diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2014-04-04 16:38:46 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2014-04-04 16:38:46 -0700 |
commit | 6ab0d68d5653b5411c298116c9502a23a50cdbf0 (patch) | |
tree | 3f3f84327a1e81688bc06300315d128b54976949 /src/base/abci/abc.c | |
parent | f6ae0e41f338a109ad2c973ace13b728f4947e14 (diff) | |
download | abc-6ab0d68d5653b5411c298116c9502a23a50cdbf0.tar.gz abc-6ab0d68d5653b5411c298116c9502a23a50cdbf0.tar.bz2 abc-6ab0d68d5653b5411c298116c9502a23a50cdbf0.zip |
Tuning LUT mapping to work while saving the best network.
Diffstat (limited to 'src/base/abci/abc.c')
-rw-r--r-- | src/base/abci/abc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c index acdfb9f8..1620dcf9 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -15017,8 +15017,8 @@ int Abc_CommandIf( Abc_Frame_t * pAbc, int argc, char ** argv ) // enable truth table computation if choices are selected if ( (c = Abc_NtkGetChoiceNum( pNtk )) ) { - if ( !Abc_FrameReadFlag("silentmode") ) - Abc_Print( 0, "Performing LUT mapping with %d choices.\n", c ); +// if ( !Abc_FrameReadFlag("silentmode") ) +// Abc_Print( 0, "Performing LUT mapping with %d choices.\n", c ); pPars->fExpRed = 0; } @@ -29749,8 +29749,8 @@ int Abc_CommandAbc9If( Abc_Frame_t * pAbc, int argc, char ** argv ) // enable truth table computation if choices are selected if ( Gia_ManHasChoices(pAbc->pGia) ) { - if ( !Abc_FrameReadFlag("silentmode") ) - Abc_Print( 0, "Performing LUT mapping with choices.\n" ); +// if ( !Abc_FrameReadFlag("silentmode") ) +// Abc_Print( 0, "Performing LUT mapping with choices.\n" ); pPars->fExpRed = 0; } |