diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2012-01-21 04:30:10 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2012-01-21 04:30:10 -0800 |
commit | 8014f25f6db719fa62336f997963532a14c568f6 (patch) | |
tree | c691ee91a3a2d452a2bd24ac89a8c717beaa7af7 /src/bdd/dsd | |
parent | c44cc5de9429e6b4f1c05045fcf43c9cb96437b5 (diff) | |
download | abc-8014f25f6db719fa62336f997963532a14c568f6.tar.gz abc-8014f25f6db719fa62336f997963532a14c568f6.tar.bz2 abc-8014f25f6db719fa62336f997963532a14c568f6.zip |
Major restructuring of the code.
Diffstat (limited to 'src/bdd/dsd')
-rw-r--r-- | src/bdd/dsd/dsd.h | 4 | ||||
-rw-r--r-- | src/bdd/dsd/dsdCheck.c | 2 | ||||
-rw-r--r-- | src/bdd/dsd/dsdInt.h | 6 |
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 |