heptagon/test/good/sampling_stateful_output.ept
Gwenal Delaval 87f359a6fd Added main to several tests
Added main to tests
Added dependency statics -> statics2 in scripts
2012-07-17 17:57:04 +02:00

30 lines
420 B
Plaintext

node f(c :bool; x :int) returns (y :int)
let
y = (0 fby x) when c
tel
node nn(x:int) returns (y:int)
let
y = 0 fby x
tel
node ff(x:int) returns (y :int)
let
y = x + 1
tel
node g(c :bool) returns (y,y2 :int)
let
y = nn(1) when c;
y2 = ff(1) when c
tel
node main() returns (y,y2:int)
var y',y'2:int;c:bool;
let
c = false fby false fby true fby c;
(y',y'2) = g(c);
(y,y2) = merge c (y',y'2) (0,0)
tel