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.
14 lines
242 B
14 lines
242 B
dtmc
|
|
|
|
const double deliverySuccess = 0.9;
|
|
|
|
label "delivered" = s=3;
|
|
|
|
module msg_delivery
|
|
s : [0..3] init 0;
|
|
|
|
[] s=0 -> (s'=1);
|
|
[] s=1 -> deliverySuccess : (s'=3) + 1-deliverySuccess: (s'=2);
|
|
[] s=2 -> (s'=1);
|
|
[] s=3 -> (s'=0);
|
|
endmodule
|