diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2013-02-25 22:07:32 -0500 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2013-02-25 22:07:32 -0500 |
commit | 7e293ebe08aac09a7dab351731f9e97c2b4dde27 (patch) | |
tree | 515831b7fe3aa80f95a31913b4601097017b20f6 /src/map/if | |
parent | fe3b2e250bc642509e7c954b837d21d8c6bb8d42 (diff) | |
download | abc-7e293ebe08aac09a7dab351731f9e97c2b4dde27.tar.gz abc-7e293ebe08aac09a7dab351731f9e97c2b4dde27.tar.bz2 abc-7e293ebe08aac09a7dab351731f9e97c2b4dde27.zip |
User-controlable SAT sweeper.
Diffstat (limited to 'src/map/if')
-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 d9cb4682..8fb2962e 100644 --- a/src/map/if/ifMap.c +++ b/src/map/if/ifMap.c @@ -286,9 +286,9 @@ void If_ObjPerformMappingAnd( If_Man_t * p, If_Obj_t * pObj, int Mode, int fPrep int Fans[2][DAU_MAX_VAR], * pFans[2] = { Fans[0], Fans[1] }; // create fanins for ( j = 0; j < (int)pCut0->nLeaves; j++ ) - pFans[0][j] = Abc_Lit2Lit( p->pPerm[0], (int)pCut0->pPerm[j] ); + pFans[0][j] = Abc_Lit2LitV( p->pPerm[0], (int)pCut0->pPerm[j] ); for ( j = 0; j < (int)pCut1->nLeaves; j++ ) - pFans[1][j] = Abc_Lit2Lit( p->pPerm[1], (int)pCut1->pPerm[j] ); + pFans[1][j] = Abc_Lit2LitV( p->pPerm[1], (int)pCut1->pPerm[j] ); // canonicize if ( iDsd[0] > iDsd[1] ) { |