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.
13 lines
271 B
13 lines
271 B
// RESULT: 0.6
|
|
Pmax=? [ !"b" U "a" ];
|
|
// RESULT: ?
|
|
"ex1": P<=0.5 [ !"b" U "a" ];
|
|
// RESULT: true
|
|
filter(forall, "ex1" <=> (x=3));
|
|
|
|
// RESULT: 0
|
|
Pmin=? [ !"b" U "a" ];
|
|
// RESULT: ?
|
|
"ex2": P>=0.5 [ !"b" U "a" ];
|
|
// RESULT: true
|
|
filter(forall, "ex2" <=> (x=2));
|