heptagon/test/bad/t4.ept

18 lines
291 B
Plaintext
Raw Normal View History

2010-06-21 12:11:06 +02:00
(* Non correct transition *)
node f(x:int) returns (y,z:int)
let
automaton
state A do y = x until y = 2 then B
state B do y = x until y = 2 then A
end;
automaton
2011-05-23 14:04:11 +02:00
state C
do z = y
2010-06-21 12:11:06 +02:00
until z = 3 then D
2011-05-23 14:04:11 +02:00
state D
do z = x
2010-06-21 12:11:06 +02:00
until z = 4 then A
end
tel