diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2013-07-29 18:55:13 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2013-07-29 18:55:13 -0700 |
commit | 1dca7458f3739ec6e2af7670cc340794c28b747d (patch) | |
tree | 3b09cf0da63eb3a5bc6271644d948765b7ab2953 /src/map/mapper | |
parent | 4c6804c3aea08f6aec693c686ec409191e983ca4 (diff) | |
download | abc-1dca7458f3739ec6e2af7670cc340794c28b747d.tar.gz abc-1dca7458f3739ec6e2af7670cc340794c28b747d.tar.bz2 abc-1dca7458f3739ec6e2af7670cc340794c28b747d.zip |
Improved buffering.
Diffstat (limited to 'src/map/mapper')
-rw-r--r-- | src/map/mapper/mapperMatch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mapper/mapperMatch.c b/src/map/mapper/mapperMatch.c index a59af3d3..f062e4da 100644 --- a/src/map/mapper/mapperMatch.c +++ b/src/map/mapper/mapperMatch.c @@ -200,7 +200,7 @@ int Map_MatchNodePhase( Map_Man_t * p, Map_Node_t * pNode, int fPhase ) for ( pCut = pNode->pCuts->pNext; pCut; pCut = pCut->pNext ) { // limit gate sizes based on fanout count - if ( (pNode->nRefs > 8 && pCut->nLeaves > 2) || (pNode->nRefs > 4 && pCut->nLeaves > 3) ) + if ( (pNode->nRefs > 3 && pCut->nLeaves > 2) || (pNode->nRefs > 1 && pCut->nLeaves > 3) ) continue; pMatch = pCut->M + fPhase; if ( pMatch->pSupers == NULL ) |