Is there any way to use a for loop into a tranjectory? Because I would
like to check a set of ttl values.
automaton A
states
now: Real := 0;
ttl: Set[Real] := {5, 10, 20, 40};
trajectories
trajdef t
stop when \E stopTime in ttl where now >= stopTime;
evolve d(now) = 1;
schedule
do
for x:Nat where x < 10 do
follow t duration 1;
od
od