summaryrefslogtreecommitdiffstats
path: root/src/bdd/dsd
diff options
context:
space:
mode:
Diffstat (limited to 'src/bdd/dsd')
-rw-r--r--src/bdd/dsd/dsd.h4
-rw-r--r--src/bdd/dsd/dsdCheck.c2
-rw-r--r--src/bdd/dsd/dsdInt.h6
3 files changed, 6 insertions, 6 deletions
diff --git a/src/bdd/dsd/dsd.h b/src/bdd/dsd/dsd.h
index 00b38625..7bb6111f 100644
--- a/src/bdd/dsd/dsd.h
+++ b/src/bdd/dsd/dsd.h
@@ -25,8 +25,8 @@
***********************************************************************/
-#ifndef __DSD_H__
-#define __DSD_H__
+#ifndef ABC__bdd__dsd__dsd_h
+#define ABC__bdd__dsd__dsd_h
////////////////////////////////////////////////////////////////////////
diff --git a/src/bdd/dsd/dsdCheck.c b/src/bdd/dsd/dsdCheck.c
index 4cecba59..4de75a92 100644
--- a/src/bdd/dsd/dsdCheck.c
+++ b/src/bdd/dsd/dsdCheck.c
@@ -68,7 +68,7 @@ void Dsd_CheckCacheAllocate( int nEntries )
memset( pCache, 0, sizeof(Dds_Cache_t) );
// check what is the size of the current cache
- nRequested = Cudd_Prime( nEntries );
+ nRequested = Abc_PrimeCudd( nEntries );
if ( pCache->nTableSize != nRequested )
{ // the current size is different
// deallocate the old, allocate the new
diff --git a/src/bdd/dsd/dsdInt.h b/src/bdd/dsd/dsdInt.h
index 78b7b154..11a8e82e 100644
--- a/src/bdd/dsd/dsdInt.h
+++ b/src/bdd/dsd/dsdInt.h
@@ -16,11 +16,11 @@
***********************************************************************/
-#ifndef __DSD_INT_H__
-#define __DSD_INT_H__
+#ifndef ABC__bdd__dsd__dsdInt_h
+#define ABC__bdd__dsd__dsdInt_h
-#include "extra.h"
+#include "src/misc/extra/extraBdd.h"
#include "dsd.h"
ABC_NAMESPACE_HEADER_START