Moved files to 'reactics-bdd'

This commit is contained in:
Artur Meski
2019-03-03 22:26:33 +00:00
parent 21edba3c65
commit 97c83ba535
1694 changed files with 0 additions and 0 deletions

14
reactics-bdd/bdd_macro.hh Normal file
View File

@@ -0,0 +1,14 @@
#ifndef __BDD_MACRO_HH__
#define __BDD_MACRO_HH__
#include "cudd.hh"
#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 **/