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.
16 lines
332 B
16 lines
332 B
// Simple LTS from Lec 9 of Computer-Aided Verification
|
|
|
|
// RESULT: ?
|
|
"ex": A[ X "a" ] & E[ X !"b"];
|
|
// RESULT: true
|
|
filter(forall, "ex" <=> (s=2));
|
|
|
|
// RESULT: ?
|
|
"ex_lhs": A[ X "a" ]
|
|
// RESULT: true
|
|
filter(forall, "ex_lhs" <=> (s=2));
|
|
|
|
// RESULT: ?
|
|
"ex_rhs": E[ X !"b"];
|
|
// RESULT: true
|
|
filter(forall, "ex_rhs" <=> (s=0|s=1|s=2));
|