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.
 
 
 
 
 
 

20 lines
320 B

// A very very simple model, that can be used with multiple different tests
// that do not depend on too much model structure
dtmc
module M
s : [0..3] init 0;
[] s=0 -> 0.6 : (s'=1) + 0.4 : (s'=2);
[] s>0 -> true;
endmodule
rewards
true : 1;
endrewards
label "a" = s=1;
label "b" = s=2;