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
228 B
17 lines
228 B
//Project 3, Question 1
|
|
|
|
dtmc
|
|
|
|
const double a = 0.01;
|
|
const double b = 0.05;
|
|
|
|
module chan1
|
|
|
|
x : [0..1];
|
|
|
|
[] x=0 -> a:(x'=1) + 1-a:(x'=0);
|
|
[] x=1 -> b:(x'=0) + 1-b:(x'=1);
|
|
|
|
endmodule
|
|
|
|
init x=0 | x=1 endinit
|