Commit a33821ab by Alan Mishchenko

Added alias for 'eliminate'.

parent 2044caa9
...@@ -30,6 +30,7 @@ alias cg clockgate ...@@ -30,6 +30,7 @@ alias cg clockgate
alias cl cleanup alias cl cleanup
alias clp collapse alias clp collapse
alias cs care_set alias cs care_set
alias el eliminate
alias esd ext_seq_dcs alias esd ext_seq_dcs
alias f fraig alias f fraig
alias fs fraig_sweep alias fs fraig_sweep
......
...@@ -3811,7 +3811,7 @@ int Abc_CommandDisjoint( Abc_Frame_t * pAbc, int argc, char ** argv ) ...@@ -3811,7 +3811,7 @@ int Abc_CommandDisjoint( Abc_Frame_t * pAbc, int argc, char ** argv )
if ( fGlobal ) if ( fGlobal )
{ {
// Abc_Print( -1, "Performing DSD of global functions of the network.\n" ); // Abc_Print( 0, "Performing DSD of global functions of the network.\n" );
// get the new network // get the new network
if ( !Abc_NtkIsStrash(pNtk) ) if ( !Abc_NtkIsStrash(pNtk) )
{ {
...@@ -3838,7 +3838,7 @@ int Abc_CommandDisjoint( Abc_Frame_t * pAbc, int argc, char ** argv ) ...@@ -3838,7 +3838,7 @@ int Abc_CommandDisjoint( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print( -1, "This command is only applicable to logic BDD networks.\n" ); Abc_Print( -1, "This command is only applicable to logic BDD networks.\n" );
return 1; return 1;
} }
Abc_Print( -1, "Performing recursive DSD and MUX decomposition of local functions.\n" ); Abc_Print( 1, "Performing recursive DSD and MUX decomposition of local functions.\n" );
if ( !Abc_NtkDsdLocal( pNtk, fVerbose, fRecursive ) ) if ( !Abc_NtkDsdLocal( pNtk, fVerbose, fRecursive ) )
Abc_Print( -1, "Recursive DSD has failed.\n" ); Abc_Print( -1, "Recursive DSD has failed.\n" );
} }
...@@ -3849,7 +3849,7 @@ int Abc_CommandDisjoint( Abc_Frame_t * pAbc, int argc, char ** argv ) ...@@ -3849,7 +3849,7 @@ int Abc_CommandDisjoint( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print( -1, "This command is only applicable to logic BDD networks (run \"bdd\").\n" ); Abc_Print( -1, "This command is only applicable to logic BDD networks (run \"bdd\").\n" );
return 1; return 1;
} }
Abc_Print( -1, "Performing simple non-recursive DSD of local functions.\n" ); Abc_Print( 1, "Performing simple non-recursive DSD of local functions.\n" );
if ( !Abc_NtkDsdLocal( pNtk, fVerbose, fRecursive ) ) if ( !Abc_NtkDsdLocal( pNtk, fVerbose, fRecursive ) )
Abc_Print( -1, "Simple DSD of local functions has failed.\n" ); Abc_Print( -1, "Simple DSD of local functions has failed.\n" );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment