summaryrefslogtreecommitdiff
path: root/tests/source/limitera.scade
blob: 1e4927e5b3e2f10a7128418189e6c2a7828d00a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
const bound: int = 128;

node limiter(x: int; d: int) returns (probe y: int)
    var s, r: int;
    let
        assume in_bounded: x >= -bound and x <= bound;
        guarantee out_bounded: y >= -bound and y <= bound;
        s = 0 -> pre y;
        r = x - s;
        activate
          if r <= -d then
            let y = s - d; tel
          else if r >= d then
            let y = s + d; tel
          else 
            let y = x; tel
        returns y;
    tel

node test(i: int) returns(a, b, c: int; exit: bool)
    let
        exit = i >= 30;
        a = (i * 21 + 122) mod (2 * bound) - bound;  -- not really random
        b = 16;
        c = limiter(a, b);
    tel