lustrec-tests/sandbox/extraction/linear/ex1.lus @ 43460259
1 |
node top(in0 : real) returns (x, y : real); |
---|---|
2 |
let
|
3 |
assert(in0 >= -1. and in0 <= 1.); |
4 |
x = 0. -> 1.5 * pre x - 0.7 * pre y + 1.6 * in0; |
5 |
y = 0. -> pre x; |
6 |
tel
|
7 |
|