projects
/
libdai.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added sprinkler example
[libdai.git]
/
examples
/
example_sprinkler.dot
1
graph Sprinkler {
2
node[shape=circle];
3
C;
4
S;
5
R;
6
W;
7
node[shape=box];
8
f0 [label="P (C)"];
9
f1 [label="P (S|C)"];
10
f2 [label="P (R|C)"];
11
f3 [label="P (W|S,R)"];
12
13
f0 -- C;
14
f1 -- S;
15
f1 -- C;
16
f2 -- R;
17
f2 -- C;
18
f3 -- W;
19
f3 -- S;
20
f3 -- R;
21
};