Quick add: states of CA

This commit is contained in:
Artur Meski
2025-02-18 19:21:25 +00:00
parent 48b4f1bb4d
commit c9efb1f29e
3 changed files with 45 additions and 3 deletions

View File

@@ -200,13 +200,13 @@ void ModelChecker::printReachWithSucc(void)
t = unproc.PickOneMinterm(*pv);
if (opts->backend_mode)
{
cout << "G " << srs->decodedRctSysStateToStr(t) << endl;
cout << "G " << srs->decodedRctSysStateWithCtxAutToStr(t) << endl;
}
else
{
cout << "Successors of " << srs->decodedRctSysStateToStr(t) << ":" << endl;
cout << "Successors of " << srs->decodedRctSysStateWithCtxAutToStr(t) << ":" << endl;
}
srs->printDecodedRctSysStates(getSucc(t));
srs->printDecodedRctSysWithCtxAutStates(getSucc(t));
unproc -= t;
}