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
270 B

// Test file from Carlos
mdp
module test
// local state
s : [1..3] init 1;
[a] s=1 -> 0.2 : (s'=2) + 0.8 : (s'=3);
[b] s=1 -> 0.4 : (s'=2) + 0.6 : (s'=3);
[c] s=1 -> 0.5 : (s'=2) + 0.5 : (s'=3);
[] s=2 -> (s'=2);
[] s=3 -> (s'=3);
endmodule