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.
13 lines
227 B
13 lines
227 B
// This should result in error
|
|
// But we don't have a way to specify that in the test suite yet...
|
|
|
|
dtmc
|
|
|
|
module M
|
|
|
|
s : [0..7] init 0;
|
|
|
|
[] s=0 -> 0.5 : (s'=1)&(s'=0) + 0.5 : (s'=2);
|
|
[] s>0 -> true;
|
|
|
|
endmodule
|