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.
14 lines
211 B
14 lines
211 B
// RESULT: 1.0
|
|
Pmax=? [ F<=6 s=0 ];
|
|
|
|
// RESULT: 1.0
|
|
Pmax=? [ F<=1 s=0 ];
|
|
|
|
// RESULT: 1.0
|
|
Pmax=? [ F<=0 s=0 ];
|
|
|
|
// RESULT: Error "Negative"
|
|
Pmax=? [ F<0 s=0 ];
|
|
|
|
// RESULT: Error "Negative"
|
|
Pmax=? [ F< -1 s=0 ];
|