lustrec-tests/regression_tests/lustre_files/success/kind_fmcad08/misc/stalmark_e8_64_e8_207.lus @ 8aaf9f57
1 |
--@ ensures OK;
|
---|---|
2 |
node top (x:bool) returns (OK:bool); |
3 |
var a,b,c:bool; |
4 |
let
|
5 |
a = true -> pre(c); |
6 |
b = false -> pre(a); |
7 |
c = false -> pre(b); |
8 |
OK = ((not a and not b and c) and |
9 |
(not a and b and not c) and |
10 |
(a and not b and not c) or |
11 |
(a and b and c)) and not (a and b and c); |
12 |
--%MAIN;
|
13 |
--%PROPERTY OK;
|
14 |
tel
|