Skip to content

Commit

Permalink
fixed failing benchmark due to syntax error.
Browse files Browse the repository at this point in the history
  • Loading branch information
lgwagner committed Nov 10, 2020
1 parent 14db615 commit 6ac1536
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions testing/consistency-checker/test11.lus
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
node main(in : real) returns (prop : bool);
var
out : real;
val : real;
let
out = 10.0 -> 2.0 + pre (in);
assert (in < 0.0 and pre(in) > -5.0 );
val = xout + pre (in);
assert (val > pre(out));
prop = out + val >= 0.0;
--%PROPERTY prop;
var
out : real;
val : real;
let
out = 10.0 -> 2.0 + pre (in);
assert (in < 0.0 and pre(in) > -5.0 );

val = out + pre (in);
assert (val > pre(out));
prop = out + val >= 0.0;
--%PROPERTY prop;
tel;

0 comments on commit 6ac1536

Please sign in to comment.