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.
 
 
 
 
 
 

12 lines
259 B

dtmc
// the param constant
const double p;
module M1
s: [0..1] init 0;
// Unsupported: Can not use parametric constant in the 'if' part of an
// ITE expression for probabilities
[] s<=1 -> (p>0.5 ? 1 : 0):(s'=1) + (p>0.5 ? 0 : 1):(s'=0);
endmodule