First working version of rsCTL verification.

This commit is contained in:
Artur Meski
2018-04-15 13:20:07 +01:00
parent c4c3af0300
commit d34e3954c4
5 changed files with 11 additions and 20 deletions

2
mc.cc
View File

@@ -107,6 +107,7 @@ inline BDD ModelChecker::getPreE(const BDD &states)
q = q.ExistAbstract(*pv_succ_E);
q = q.ExistAbstract(*pv_ctx_E);
q = q.ExistAbstract(*pv_proc_enab_E);
return q;
}
@@ -127,6 +128,7 @@ inline BDD ModelChecker::getPreEctx(const BDD &states, const BDD *contexts)
q = q.ExistAbstract(*pv_succ_E);
q = q.ExistAbstract(*pv_ctx_E);
q = q.ExistAbstract(*pv_proc_enab_E);
return q;
}