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.
8 lines
416 B
8 lines
416 B
// RESULT: true (should be satisfied by {0,1})
|
|
filter(forall, P<0.8 [ (G !(s=3)) & (G F (s=6)) ], s=0|s=1);
|
|
// RESULT: true (should be satisfied by {0,1})
|
|
filter(count, P<0.8 [ (G !(s=3)) & (G F (s=6)) ]) = 2;
|
|
// RESULT: true (should be satisfied by {3})
|
|
filter(forall, P>0 [ (G !(s=3)) & (G F (s=6)) ], s=6);
|
|
// RESULT: true (should be satisfied by {3})
|
|
filter(count, P>0 [ (G !(s=3)) & (G F (s=6)) ]) = 1;
|