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.
12 lines
225 B
12 lines
225 B
// test case for github issue #56
|
|
// all states are initial and are in their own BSCC,
|
|
// so "all initial states in the same BSCC" does not apply
|
|
|
|
dtmc
|
|
|
|
init true endinit
|
|
|
|
module m
|
|
s: [0..1];
|
|
[] true -> true;
|
|
endmodule
|