diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2012-11-11 21:37:27 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2012-11-11 21:37:27 -0800 |
commit | e779b8c8894b1b0d90a84293a3a8d1b76d03cdee (patch) | |
tree | 416b237275946dabd5b2a0473adc7644276b7704 /src/map | |
parent | e52dc774302cfcbc84473d69ea00864e50a3b199 (diff) | |
download | abc-e779b8c8894b1b0d90a84293a3a8d1b76d03cdee.tar.gz abc-e779b8c8894b1b0d90a84293a3a8d1b76d03cdee.tar.bz2 abc-e779b8c8894b1b0d90a84293a3a8d1b76d03cdee.zip |
Improved DSD.
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/if/ifMap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/if/ifMap.c b/src/map/if/ifMap.c index cb3c6832..a8876889 100644 --- a/src/map/if/ifMap.c +++ b/src/map/if/ifMap.c @@ -27,7 +27,7 @@ ABC_NAMESPACE_IMPL_START /// DECLARATIONS /// //////////////////////////////////////////////////////////////////////// -extern char * Dau_DsdMerge( char * pDsd0i, int * pPerm0, char * pDsd1i, int * pPerm1, int fCompl0, int fCompl1 ); +extern char * Dau_DsdMerge( char * pDsd0i, int * pPerm0, char * pDsd1i, int * pPerm1, int fCompl0, int fCompl1, int nVars ); //////////////////////////////////////////////////////////////////////// /// FUNCTION DEFINITIONS /// @@ -281,7 +281,7 @@ void If_ObjPerformMappingAnd( If_Man_t * p, If_Obj_t * pObj, int Mode, int fPrep If_CutPerm0(pCut, pCut0), Abc_NamStr(p->pNamDsd, pCut1->iDsd), If_CutPerm1(pCut, pCut1), - pObj->fCompl0, pObj->fCompl1 ); + pObj->fCompl0, pObj->fCompl1, pCut->nLimit ); pCut->iDsd = Abc_NamStrFindOrAdd( p->pNamDsd, pName, NULL ); } |