diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2014-07-22 17:11:50 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2014-07-22 17:11:50 -0700 |
commit | eee04f448d994db05d7566f5cb78e986eaee515d (patch) | |
tree | be097d55293e05ecc4eaf19031ff271cbcf357bc /src | |
parent | 9fa827aacf2d081d9762753929545507b7a6be89 (diff) | |
download | abc-eee04f448d994db05d7566f5cb78e986eaee515d.tar.gz abc-eee04f448d994db05d7566f5cb78e986eaee515d.tar.bz2 abc-eee04f448d994db05d7566f5cb78e986eaee515d.zip |
Undoing previous change to SOP balancing.
Diffstat (limited to 'src')
-rw-r--r-- | src/map/if/ifMap.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/map/if/ifMap.c b/src/map/if/ifMap.c index 5fa95fc1..b2063f88 100644 --- a/src/map/if/ifMap.c +++ b/src/map/if/ifMap.c @@ -273,20 +273,20 @@ void If_ObjPerformMappingAnd( If_Man_t * p, If_Obj_t * pObj, int Mode, int fPrep if ( p->pPars->fDelayOpt ) { pCut->Delay = If_CutSopBalanceEval( p, pCut, NULL ); - if ( pCut->Delay >= pObj->Level && pCut->nLeaves > 2 ) - pCut->Delay += 1; +// if ( pCut->Delay >= pObj->Level && pCut->nLeaves > 2 ) +// pCut->Delay += 1; } else if ( p->pPars->fDsdBalance ) { pCut->Delay = If_CutDsdBalanceEval( p, pCut, NULL ); - if ( pCut->Delay >= pObj->Level && pCut->nLeaves > 2 ) - pCut->Delay += 1; +// if ( pCut->Delay >= pObj->Level && pCut->nLeaves > 2 ) +// pCut->Delay += 1; } else if ( p->pPars->fUserRecLib ) { pCut->Delay = If_CutDelayRecCost3( p, pCut, pObj ); - if ( pCut->Delay >= pObj->Level && pCut->nLeaves > 2 ) - pCut->Delay += 1; +// if ( pCut->Delay >= pObj->Level && pCut->nLeaves > 2 ) +// pCut->Delay += 1; } else if ( p->pPars->fDelayOptLut ) pCut->Delay = If_CutLutBalanceEval( p, pCut ); |