You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
249 B
16 lines
249 B
dtmc
|
|
|
|
module tiny
|
|
s : [0 .. 3] init 0;
|
|
|
|
[] s = 0 -> 1/3 : (s'=1) + 1/3 : (s'=2) + 1/3 : (s'=3);
|
|
[] s = 1 -> 1 : (s'=2);
|
|
[] s = 2 -> 1/2 : (s'=2) + 1/2 : (s'=1);
|
|
[] s = 3 -> 1 : (s'=3);
|
|
|
|
endmodule
|
|
|
|
rewards
|
|
s=1 : 10;
|
|
s=3 : 5;
|
|
endrewards
|