diff options
Diffstat (limited to 'tests/source/limiter.scade')
-rw-r--r-- | tests/source/limiter.scade | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/source/limiter.scade b/tests/source/limiter.scade index ff60567..fc9fb30 100644 --- a/tests/source/limiter.scade +++ b/tests/source/limiter.scade @@ -4,6 +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 >= 0 and d >= 16; guarantee out_bounded: y >= -bound and y <= bound; s = 0 -> pre y; r = x - s; |