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.
 
 
 
 
 
 

15 lines
217 B

dtmc
const double a = 0.01;
const double b = 0.05;
module chan1
s : [0..1];
[] s=0 -> 1-a : (s'=0) + a : (s'=1);
[] s=1 -> 1-b : (s'=1) + b : (s'=0);
endmodule
init s=0 | s=1 endinit