Modified test t13.ept
Modified test t13.ept so that the output is not always "0" (useful for further comparisons)
This commit is contained in:
parent
a15e17c02d
commit
90e391f4df
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ tel
|
|||
node fourth() returns (res : bool)
|
||||
var tmp : int;
|
||||
let
|
||||
tmp = 0 fby (if res then 0 else tmp + 1);
|
||||
tmp = 0 fby (if res then tmp + 1 else 0);
|
||||
res = tmp = 0;
|
||||
tel
|
||||
|
||||
|
|
Loading…
Reference in a new issue