annotate toolboxes/FullBNT-1.0.7/bnt/examples/static/Misc/sprinkler.bif @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
rev   line source
wolffd@0 1 network Grass
wolffd@0 2 {}
wolffd@0 3 variable Cloudy
wolffd@0 4 { type discrete[2] {false true}; }
wolffd@0 5 variable Sprinkler
wolffd@0 6 { type discrete[2] {false true}; }
wolffd@0 7 variable Rain
wolffd@0 8 { type discrete[2] {false true}; }
wolffd@0 9 variable WetGrass
wolffd@0 10 { type discrete[2] {false true}; }
wolffd@0 11 probability (Cloudy)
wolffd@0 12 { table 0.5 0.5; }
wolffd@0 13 probability (Sprinkler | Cloudy)
wolffd@0 14 { table 0.5 0.9 0.5 0.1; }
wolffd@0 15 probability (Rain | Cloudy)
wolffd@0 16 { table 0.8 0.2 0.2 0.8; }
wolffd@0 17 probability (WetGrass | Rain Sprinkler)
wolffd@0 18 { table 1.0 0.1 0.1 0.01 0.0 0.9 0.9 0.99; }