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
217 B
17 lines
217 B
// Completely deterministic model
|
|
// used to do some sanity checks on statistical model checking
|
|
|
|
dtmc
|
|
|
|
const int N = 10;
|
|
|
|
module M
|
|
|
|
x : [0..N];
|
|
|
|
[] x<N -> (x'=x+1);
|
|
[] x=N -> true;
|
|
|
|
endmodule
|
|
|
|
label "end" = x=N;
|