diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2011-03-03 12:28:52 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2011-03-03 12:28:52 -0800 |
commit | 148a786b694b5cad9035e53f35a349d6274f0291 (patch) | |
tree | 31c68462521795f48dfadefc64c2ad6312a99ed1 /src/opt/fxu | |
parent | 88bdf467d80e32f8c1edce898edfb520d48b55b8 (diff) | |
download | abc-148a786b694b5cad9035e53f35a349d6274f0291.tar.gz abc-148a786b694b5cad9035e53f35a349d6274f0291.tar.bz2 abc-148a786b694b5cad9035e53f35a349d6274f0291.zip |
Made abc.h independent of CUDD and Extra.
Diffstat (limited to 'src/opt/fxu')
-rw-r--r-- | src/opt/fxu/fxu.h | 2 | ||||
-rw-r--r-- | src/opt/fxu/fxuCreate.c | 1 | ||||
-rw-r--r-- | src/opt/fxu/fxuInt.h | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/src/opt/fxu/fxu.h b/src/opt/fxu/fxu.h index db855f3b..282b1d2b 100644 --- a/src/opt/fxu/fxu.h +++ b/src/opt/fxu/fxu.h @@ -60,7 +60,7 @@ struct FxuDataStruct Vec_Ptr_t * vSopsNew; // the SOPs for each node in the network after extraction Vec_Ptr_t * vFaninsNew; // the fanins of each node in the network after extraction // the SOP manager - Extra_MmFlex_t * pManSop; + Mem_Flex_t * pManSop; // statistics int nNodesOld; // the old number of nodes int nNodesNew; // the number of divisors actually extracted diff --git a/src/opt/fxu/fxuCreate.c b/src/opt/fxu/fxuCreate.c index 3466b520..76c534e3 100644 --- a/src/opt/fxu/fxuCreate.c +++ b/src/opt/fxu/fxuCreate.c @@ -16,7 +16,6 @@ ***********************************************************************/ -#include "abc.h" #include "fxuInt.h" #include "fxu.h" diff --git a/src/opt/fxu/fxuInt.h b/src/opt/fxu/fxuInt.h index 96bec083..bbceac47 100644 --- a/src/opt/fxu/fxuInt.h +++ b/src/opt/fxu/fxuInt.h @@ -24,8 +24,8 @@ /// INCLUDES /// //////////////////////////////////////////////////////////////////////// +#include "abc.h" #include "extra.h" -#include "vec.h" ABC_NAMESPACE_HEADER_START |