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.
 
 
 
 
 
 

17 lines
202 B

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