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
205 B
13 lines
205 B
// Example properties to illustrate regression tests
|
|
|
|
// RESULT: 0.5
|
|
Pmax=? [ F s=2 ];
|
|
|
|
// RESULT: true
|
|
P<0.6 [ F s=2 ];
|
|
|
|
// RESULT: 2
|
|
ceil(Pmax=? [ F s=2 ]) + 1;
|
|
|
|
// RESULT: Error
|
|
Pmax=? [ F<=(-1) s=2 ];
|