-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed failing benchmark due to syntax error.
- Loading branch information
lgwagner
committed
Nov 10, 2020
1 parent
14db615
commit 6ac1536
Showing
1 changed file
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |