diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2020-03-14 16:29:15 +0200 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2020-03-14 16:29:15 +0200 |
commit | 488f949721f3e68edc6028cff40afd8c60f53619 (patch) | |
tree | 5f9a45373b83ce296e121c67c6f7fbdf8f232d15 | |
parent | 47c0f7840da4e8e27f05fc2300b433768b937742 (diff) | |
download | abc-488f949721f3e68edc6028cff40afd8c60f53619.tar.gz abc-488f949721f3e68edc6028cff40afd8c60f53619.tar.bz2 abc-488f949721f3e68edc6028cff40afd8c60f53619.zip |
Adding limit on the number of live BDD nodes in command 'muxes -g'.
-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 a7af3496..ed4de2e4 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -11041,7 +11041,7 @@ int Abc_CommandMuxes( Abc_Frame_t * pAbc, int argc, char ** argv ) pNtkRes = Abc_NtkBddToMuxes( pNtk, fGlobal, Limit ); if ( pNtkRes == NULL ) { - Abc_Print( -1, "Converting to MUXes has failed.\n" ); + Abc_Print( 0, "Converting to MUXes has failed.\n" ); return 0; } // replace the current network |