summaryrefslogtreecommitdiffstats
path: root/src/aig/gia
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2014-04-11 09:53:19 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2014-04-11 09:53:19 -0700
commit24f63cf92cf26378f8f57ba171f541631577726e (patch)
tree963a719d336cd38d4f36b152edb4b009689bf549 /src/aig/gia
parentb50894ab6469081cfc4684d19c02be74c248d2ca (diff)
downloadabc-24f63cf92cf26378f8f57ba171f541631577726e.tar.gz
abc-24f63cf92cf26378f8f57ba171f541631577726e.tar.bz2
abc-24f63cf92cf26378f8f57ba171f541631577726e.zip
Correcting internal check.
Diffstat (limited to 'src/aig/gia')
-rw-r--r--src/aig/gia/giaIf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/aig/gia/giaIf.c b/src/aig/gia/giaIf.c
index 7e3462f8..cb470e06 100644
--- a/src/aig/gia/giaIf.c
+++ b/src/aig/gia/giaIf.c
@@ -1201,7 +1201,8 @@ int Gia_ManFromIfLogicFindLut( If_Man_t * pIfMan, Gia_Man_t * pNew, If_Cut_t * p
}
assert( If_DsdManSuppSize(pIfMan->pIfDsdMan, If_CutDsdLit(pIfMan, pCutBest)) == (int)pCutBest->nLeaves );
// find the bound set
- uSetOld = If_DsdManCheckXY( pIfMan->pIfDsdMan, If_CutDsdLit(pIfMan, pCutBest), nLutSize, 1, 1, 0 );
+// uSetOld = If_DsdManCheckXY( pIfMan->pIfDsdMan, If_CutDsdLit(pIfMan, pCutBest), nLutSize, 1, 0, 1, 0 );
+ uSetOld = pCutBest->uMaskFunc;
// remap bound set
uSetNew = 0;
for ( k = 0; k < If_CutLeaveNum(pCutBest); k++ )