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
201 B
15 lines
201 B
dtmc
|
|
|
|
const double a = 0.01;
|
|
const double b = 0.05;
|
|
|
|
init
|
|
true
|
|
endinit
|
|
|
|
module Channel
|
|
s : [0..1];
|
|
[] s=0 -> a : (s'=1) + 1-a : (s'=0);
|
|
[] s=1 -> b : (s'=0) + 1-b : (s'=1);
|
|
endmodule
|
|
|