You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
363 B
12 lines
363 B
// RESULT: 1
|
|
P=? [ G F "a" ];
|
|
// RESULT: 0.75
|
|
P=? [ (G !"b")&(G F "a") ];
|
|
// RESULT: 0.125
|
|
P=? [ F G "a" ];
|
|
// RESULT: 1
|
|
P=? [ (G ("b"=>(F (!"b"&"a"))))&(F G !"b") ];
|
|
// RESULT: true (should be satisfied by {1,2,5})
|
|
filter(forall, P>0.2 [ F G "a" ], s=1|s=2|s=5);
|
|
// RESULT: true (should be satisfied by {1,2,5})
|
|
filter(count, P>0.2 [ F G "a" ]) = 3;
|