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.
34 lines
412 B
34 lines
412 B
// Fix for the handling of strict/non-strict in simulation based bounded until fixed in revision 9163
|
|
|
|
// RESULT: Error
|
|
P=?[ G<0 s<2]
|
|
|
|
// RESULT: 1.0
|
|
P=?[ G<1 s<2]
|
|
|
|
// RESULT: 1.0
|
|
P=?[ G<2 s<2]
|
|
|
|
// RESULT: 0.0
|
|
P=?[ G<3 s<2]
|
|
|
|
// RESULT: 0.0
|
|
P=?[ G<4 s<2]
|
|
|
|
|
|
|
|
// RESULT: 1.0
|
|
P=?[ G<=0 s<2]
|
|
|
|
// RESULT: 1.0
|
|
P=?[ G<=1 s<2]
|
|
|
|
// RESULT: 0.0
|
|
P=?[ G<=2 s<2]
|
|
|
|
// RESULT: 0.0
|
|
P=?[ G<=3 s<2]
|
|
|
|
// RESULT: 0.0
|
|
P=?[ G<=4 s<2]
|
|
|