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
282 B
14 lines
282 B
// RESULT: true
|
|
multi(P>=0.6 [ F s=2 ],P>=0.6 [ G F s=2 ])
|
|
|
|
// RESULT: true
|
|
multi(P>=0.4 [ G F s=2 ],P>=0.6 [ G F s=1 ])
|
|
|
|
// RESULT: true
|
|
multi(P>=0.4 [ F s=2 ],P>=0.6 [ G F s=1 ])
|
|
|
|
// RESULT: 1.0
|
|
multi(Pmax=? [ F s=2 ],P>=0.6 [ G F s=1 ])
|
|
|
|
// RESULT: 1.0
|
|
multi(Pmax=? [ G F s=2 ])
|