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.
14 lines
275 B
14 lines
275 B
// dtmc // Pmax =? [ F seenA ] = 0.0 Pmax =? [ F seenB ] = 0.0
|
|
pta // Pmax =? [ F seenA ] = 1.0 Pmax =? [ F seenB ] = 0.0
|
|
|
|
module AA
|
|
seenA: bool init false;
|
|
|
|
[fire] true -> (seenA'=true);
|
|
endmodule
|
|
|
|
module BB
|
|
seenB: bool init false;
|
|
|
|
[fire] false -> (seenB'=true);
|
|
endmodule
|