diff options
Diffstat (limited to 'src/bool/kit/kitBdd.c')
-rw-r--r-- | src/bool/kit/kitBdd.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/bool/kit/kitBdd.c b/src/bool/kit/kitBdd.c index 9b6cb09f..9c7c918d 100644 --- a/src/bool/kit/kitBdd.c +++ b/src/bool/kit/kitBdd.c @@ -19,7 +19,10 @@ ***********************************************************************/ #include "kit.h" + +#ifdef ABC_USE_CUDD #include "misc/extra/extraBdd.h" +#endif ABC_NAMESPACE_IMPL_START @@ -32,6 +35,8 @@ ABC_NAMESPACE_IMPL_START /// FUNCTION DEFINITIONS /// //////////////////////////////////////////////////////////////////////// +#ifdef ABC_USE_CUDD + /**Function************************************************************* Synopsis [Derives the BDD for the given SOP.] @@ -227,6 +232,8 @@ int Kit_SopFactorVerify( Vec_Int_t * vCover, Kit_Graph_t * pFForm, int nVars ) return RetValue; } +#endif + //////////////////////////////////////////////////////////////////////// /// END OF FILE /// //////////////////////////////////////////////////////////////////////// |