This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/CLPBN/examples/burglary-alarm.yap

24 lines
528 B
Plaintext
Raw Normal View History

2012-05-23 14:56:01 +01:00
:- use_module(library(pfl)).
2012-05-23 17:17:50 +01:00
%:- set_solver(fove).
%:- set_solver(hve).
%:- set_solver(bp).
%:- set_solver(cbp).
2012-05-23 14:56:01 +01:00
2012-05-23 17:17:50 +01:00
:- yap_flag(write_strings, off).
2012-05-23 14:56:01 +01:00
2012-05-23 17:17:50 +01:00
bayes burglary::[b1,b2] ; [0.001, 0.999] ; [].
2012-05-23 14:56:01 +01:00
bayes earthquake::[e1,e2] ; [0.002, 0.998]; [].
2012-05-23 17:17:50 +01:00
bayes alarm::[a1,a2], burglary, earthquake ;
[0.95, 0.94, 0.29, 0.001, 0.05, 0.06, 0.71, 0.999] ;
[].
2012-05-23 14:56:01 +01:00
2012-05-23 17:17:50 +01:00
bayes john_calls::[j1,j2], alarm ; [0.9, 0.05, 0.1, 0.95] ; [].
2012-05-23 14:56:01 +01:00
2012-05-23 17:17:50 +01:00
bayes mary_calls::[m1,m2], alarm ; [0.7, 0.01, 0.3, 0.99] ; [].
2012-05-23 14:56:01 +01:00
2012-05-23 17:17:50 +01:00
% ?- john_calls(J), mary_calls(m1).
2012-05-23 14:56:01 +01:00