diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2013-04-01 20:21:34 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2013-04-01 20:21:34 -0700 |
commit | f99e5cd9d6c26987c3164dd28bae5b04c1404509 (patch) | |
tree | ed35b0b90c6a4d511ce5b0f37b61098a4913fe8b /src/base | |
parent | 28f12c5f0610b7a229b1b4416e314998cee513d4 (diff) | |
download | abc-f99e5cd9d6c26987c3164dd28bae5b04c1404509.tar.gz abc-f99e5cd9d6c26987c3164dd28bae5b04c1404509.tar.bz2 abc-f99e5cd9d6c26987c3164dd28bae5b04c1404509.zip |
Shrink for 6-LUTs.
Diffstat (limited to 'src/base')
-rw-r--r-- | src/base/abci/abc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c index 4851e8f4..7f8a6e8c 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -26228,7 +26228,7 @@ int Abc_CommandAbc9Shrink( Abc_Frame_t * pAbc, int argc, char ** argv ) } nLutSize = Gia_ManLutSizeMax( pAbc->pGia ); if ( nLutSize <= 4 ) - pTemp = Gia_ManPerformMapShrink( pAbc->pGia, fKeepLevel, fVerbose ); + pTemp = Gia_ManMapShrink4( pAbc->pGia, fKeepLevel, fVerbose ); else if ( nLutSize <= 6 ) pTemp = Gia_ManMapShrink6( pAbc->pGia, nFanoutMax, fKeepLevel, fVerbose ); else |