From 368a0b045d3df1aa126458cf485e07eab153924d Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Tue, 1 Jul 2014 10:57:14 +0200 Subject: Finish up EDDs --- tests/source/limitera.scade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/source/limitera.scade b/tests/source/limitera.scade index 2b87278..9bfb6d2 100644 --- a/tests/source/limitera.scade +++ b/tests/source/limitera.scade @@ -4,7 +4,7 @@ node limiter(x: int; d: int) returns (probe y: int) var s, r: int; let assume in_bounded: x >= -bound and x <= bound; - assume d_bounded: d = 16; + assume d_bounded: d >= 0 and d <= 16; guarantee out_bounded: y >= -bound and y <= bound; s = 0 -> pre y; r = x - s; -- cgit v1.2.3