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.
16 lines
268 B
16 lines
268 B
const int x;
|
|
|
|
label "done" = s=7;
|
|
|
|
// RESULT (x=1): true
|
|
// RESULT (x=2): true
|
|
// RESULT (x=3): false
|
|
P>0.5 [ F s=7 & d>x ];
|
|
|
|
// RESULT: 0.46875
|
|
P=? [ F<=5 s=7 & d>3 ];
|
|
|
|
// RESULT (x=1): 1.0
|
|
// RESULT (x=2): Infinity
|
|
// RESULT (x=3): Infinity
|
|
R=? [ F "done" & d>=x ];
|