summaryrefslogtreecommitdiffstats
path: root/src/base/wlc/wlcBlast.c
diff options
context:
space:
mode:
authorYen-Sheng Ho <ysho@berkeley.edu>2017-03-17 12:21:28 -0700
committerYen-Sheng Ho <ysho@berkeley.edu>2017-03-17 12:21:28 -0700
commit3974ff75186caed5996331f353e0f4587c0091c1 (patch)
treec9105874c1724e321d6ebf76996e0eeb203d45ac /src/base/wlc/wlcBlast.c
parent4d7cec5051d741888db0d5ef844b0270dc509830 (diff)
parentd66ff2cf54d7b4bb87c53b9cd27a6dc3f9df1630 (diff)
downloadabc-3974ff75186caed5996331f353e0f4587c0091c1.tar.gz
abc-3974ff75186caed5996331f353e0f4587c0091c1.tar.bz2
abc-3974ff75186caed5996331f353e0f4587c0091c1.zip
merge
Diffstat (limited to 'src/base/wlc/wlcBlast.c')
-rw-r--r--src/base/wlc/wlcBlast.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/wlc/wlcBlast.c b/src/base/wlc/wlcBlast.c
index f4de8ee6..02cb2b1c 100644
--- a/src/base/wlc/wlcBlast.c
+++ b/src/base/wlc/wlcBlast.c
@@ -868,7 +868,7 @@ void Wlc_BlastBooth( Gia_Man_t * pNew, int * pArgA, int * pArgB, int nArgA, int
SeeAlso []
***********************************************************************/
-Gia_Man_t * Wlc_NtkBitBlast( Wlc_Ntk_t * p, Vec_Int_t * vBoxIds, int iOutput, int nOutputRange, int fGiaSimple, int fAddOutputs, int fBooth )
+Gia_Man_t * Wlc_NtkBitBlast( Wlc_Ntk_t * p, Vec_Int_t * vBoxIds, int iOutput, int nOutputRange, int fGiaSimple, int fAddOutputs, int fBooth, int fNoCleanup )
{
int fVerbose = 0;
int fUseOldMultiplierBlasting = 0;
@@ -1401,7 +1401,7 @@ Gia_Man_t * Wlc_NtkBitBlast( Wlc_Ntk_t * p, Vec_Int_t * vBoxIds, int iOutput, in
assert( nFFins == nFFouts );
Gia_ManSetRegNum( pNew, nFFins );
// finalize AIG
- if ( !fGiaSimple )
+ if ( !fGiaSimple && !fNoCleanup )
{
pNew = Gia_ManCleanup( pTemp = pNew );
Gia_ManDupRemapLiterals( vBits, pTemp );