Building of stateconstr.o; prelim. methods for ctx and state BDD enc.

This commit is contained in:
Artur Meski
2018-09-22 22:55:00 +01:00
parent a36ed9651f
commit 206996a700
4 changed files with 21 additions and 73 deletions

View File

@@ -11,7 +11,7 @@
#include "types.hh"
/* For Boolean contexts: */
/* For state constraints: */
#define STC_PV 80
#define STC_AND 81
#define STC_OR 82
@@ -87,7 +87,11 @@ class StateConstr
std::string toStr(void) const;
BDD getBDD(const SymRS *srs) const;
BDD getBDD(const SymRS *srs) const {
return getBDDforContext(srs);
}
BDD getBDDforContext(const SymRS *srs) const;
BDD getBDDforState(const SymRS *srs) const;
Oper getOper(void) const
{