Initial RS states vs initial CA states (they are incompatible)

This commit is contained in:
Artur Meski
2018-03-04 19:46:09 +00:00
parent f55d433791
commit 600f5c0daa
3 changed files with 16 additions and 1 deletions

View File

@@ -399,7 +399,8 @@ void SymRS::encode(void)
VERB("Encoding done");
}
BDD SymRS::encActStrEntity(std::string name) const {
BDD SymRS::encActStrEntity(std::string name) const
{
int id = getMappedStateToActID(rs->getEntityID(name));
if (id < 0)
{
@@ -409,3 +410,5 @@ BDD SymRS::encActStrEntity(std::string name) const {
return encActEntity(getMappedStateToActID(rs->getEntityID(name)));
}
}
/** EOF **/