dtmc // the param constant const double p; module M1 s: [0..2] init 0; // Unsupported: Can not use parametric constant as argument in a max // function for probabilities [] s=0 -> max(p, 1/3):(s'=1) + 1-max(p, 1/3):(s'=2); endmodule