summaryrefslogtreecommitdiffstats
path: root/src/aig/gia/giaIf.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2013-08-14 20:03:25 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2013-08-14 20:03:25 -0700
commit728291b087b253e839c4a29b3e1b31e45401b472 (patch)
tree8ce501c48b25c8fdd2514c3ffeda6287d3e501a8 /src/aig/gia/giaIf.c
parent0916417e2ec9aeac86899a599d63ca16791eba09 (diff)
downloadabc-728291b087b253e839c4a29b3e1b31e45401b472.tar.gz
abc-728291b087b253e839c4a29b3e1b31e45401b472.tar.bz2
abc-728291b087b253e839c4a29b3e1b31e45401b472.zip
Enabling LUT decomposition in two special cases.
Diffstat (limited to 'src/aig/gia/giaIf.c')
-rw-r--r--src/aig/gia/giaIf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aig/gia/giaIf.c b/src/aig/gia/giaIf.c
index 775a0e67..ab4b8206 100644
--- a/src/aig/gia/giaIf.c
+++ b/src/aig/gia/giaIf.c
@@ -1031,7 +1031,7 @@ Gia_Man_t * Gia_ManFromIfLogic( If_Man_t * pIfMan )
{
pCutBest = If_ObjCutBest( pIfObj );
// perform sorting of cut leaves by delay, so that the slowest pin drives the fastest input of the LUT
- if ( !pIfMan->pPars->fDelayOpt && !pIfMan->pPars->pLutStruct && !pIfMan->pPars->fUserRecLib && !pIfMan->pPars->nGateSize )
+ if ( !pIfMan->pPars->fDelayOpt && !pIfMan->pPars->pLutStruct && !pIfMan->pPars->fUserRecLib && !pIfMan->pPars->nGateSize && !pIfMan->pPars->fEnableCheck75 && !pIfMan->pPars->fEnableCheck75u )
If_CutRotatePins( pIfMan, pCutBest );
// collect leaves of the best cut
Vec_IntClear( vLeaves );