Browse Source

Added tiny text example for ctmc mc.

Former-commit-id: 498bbec1f2
tempestpy_adaptions
dehnert 10 years ago
parent
commit
c6521221bd
  1. 11
      examples/ctmc/tiny/tiny.sm

11
examples/ctmc/tiny/tiny.sm

@ -0,0 +1,11 @@
ctmc
module one
s : [0 .. 3] init 1;
[] s<3 -> 3/2 : (s'=s+1);
[] s>0 -> 3 : (s'=s-1);
endmodule
label "empty" = s=0;
label "full" = s=3;
Loading…
Cancel
Save