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.
15 lines
185 B
15 lines
185 B
const int K = 0;
|
|
|
|
label "not_end" = x<N;
|
|
|
|
// RESULT: 1.0
|
|
P=? [ F "end" ]
|
|
|
|
// RESULT: 1.0
|
|
P=? [ F x=(N+K) ]
|
|
|
|
// RESULT: 0.0
|
|
P=? [ F x=(N+K+1) ]
|
|
|
|
// RESULT: 1.0
|
|
P=? [ "not_end" U "end" ]
|