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.
19 lines
433 B
19 lines
433 B
// Bug fix in svn rev 11036
|
|
// (the first of these used to be mis-detected as timed LTL properties)
|
|
|
|
// RESULT: true
|
|
P>0.5 [ X F P>0 [ F<=4 "a" ] ]
|
|
// RESULT: true
|
|
P>=1 [ F<=1 P>0 [ X F "a" ] ]
|
|
// RESULT: true
|
|
P>0.5 [ F>=1 P>0 [ X F "a" ] ]
|
|
|
|
// These ones are now supported
|
|
// as well
|
|
|
|
// RESULT: true
|
|
P>0.5 [ X F P>0 [ X F<=4 "a" ] ]
|
|
// RESULT: true
|
|
P>0.5 [ X F<=1 P>0 [ X F "a" ] ]
|
|
// RESULT: true
|
|
P>0.5 [ X F P>0 [ X F<=1 "a" ] ]
|