Context automaton works with RS

This commit is contained in:
Artur Meski
2018-03-27 15:41:50 +01:00
parent 1f01dce3cc
commit c74d4bdd0c
5 changed files with 137 additions and 44 deletions

View File

@@ -1,8 +1,12 @@
#ifndef __BDD_MACRO_HH__
#define __BDD_MACRO_HH__
#define BDD_IFF(p,q) (!(p+q)+(p*q))
#define BDD_TRUE (cuddMgr->bddOne())
#define BDD_FALSE (cuddMgr->bddZero())
#define BDD_IFF(p,q) (!(p+q)+(p*q))
#define BDD_TRUE (cuddMgr->bddOne())
#define BDD_FALSE (cuddMgr->bddZero())
#define BDD_PRINT(t) ((t).PrintMinterm())
#endif
/** EOF **/