summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2013-04-28 15:41:29 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2013-04-28 15:41:29 -0700
commita33821ab38129116fd9ac94b7df83db2b18c66be (patch)
treeb4c9d14e64dee607e57acf9190d16f41d1c1b20b
parent2044caa97e108625647f0e335c15e75d07a4788c (diff)
downloadabc-a33821ab38129116fd9ac94b7df83db2b18c66be.tar.gz
abc-a33821ab38129116fd9ac94b7df83db2b18c66be.tar.bz2
abc-a33821ab38129116fd9ac94b7df83db2b18c66be.zip
Added alias for 'eliminate'.
-rw-r--r--abc.rc1
-rw-r--r--src/base/abci/abc.c6
2 files changed, 4 insertions, 3 deletions
diff --git a/abc.rc b/abc.rc
index ea3e7bec..7f698b92 100644
--- a/abc.rc
+++ b/abc.rc
@@ -30,6 +30,7 @@ alias cg clockgate
alias cl cleanup
alias clp collapse
alias cs care_set
+alias el eliminate
alias esd ext_seq_dcs
alias f fraig
alias fs fraig_sweep
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index ee022712..242afb8c 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -3811,7 +3811,7 @@ int Abc_CommandDisjoint( Abc_Frame_t * pAbc, int argc, char ** argv )
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
if ( !Abc_NtkIsStrash(pNtk) )
{
@@ -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" );
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 ) )
Abc_Print( -1, "Recursive DSD has failed.\n" );
}
@@ -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" );
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 ) )
Abc_Print( -1, "Simple DSD of local functions has failed.\n" );
}