# siec automatow z ZN, ale bez zmiennych calkowitych net { actions { m; n; p; q; w; }; automaton automacikB1 { clocks { x1; }; locations { a { init; }; b { inv x1 < 1; }; }; trans { a -> b , m , , { x1; }; b -> b , q , , { }; b -> a , n , , { }; }; }; automaton automacikC32 { clocks { x3; }; locations { A { init; }; B; }; trans { A -> B , w , , { }; B -> A , w , , { }; }; }; automaton automacikB2 { clocks { x2; }; locations { d; c { init; }; e { inv x2 < 3; }; }; trans { c -> d , p , x2 > 5 , { }; d -> e , m , , { x2; }; e -> c , n , , { x2; }; }; }; };