summaryrefslogtreecommitdiffstats
path: root/src/base
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2015-07-16 15:20:27 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2015-07-16 15:20:27 -0700
commit3a321133afaeb47f2652b91b72825d853ead5d3e (patch)
tree7e8c5005965f4eae7295e78d6234ab07020c2395 /src/base
parentf54a139c8aba779367dc2f692ba3c8c53b6a8f5f (diff)
downloadabc-3a321133afaeb47f2652b91b72825d853ead5d3e.tar.gz
abc-3a321133afaeb47f2652b91b72825d853ead5d3e.tar.bz2
abc-3a321133afaeb47f2652b91b72825d853ead5d3e.zip
Clarifying 'cec' and 'dsec' usage message.
Diffstat (limited to 'src/base')
-rw-r--r--src/base/abci/abc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index ca693f11..e6bfa52b 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -20539,7 +20539,7 @@ usage:
Abc_Print( -2, "\t-P num : partition size for multi-output networks [default = %s]\n", Buffer );
Abc_Print( -2, "\t-p : toggle automatic partitioning [default = %s]\n", fPartition? "yes": "no" );
Abc_Print( -2, "\t-s : toggle \"SAT only\" and \"FRAIG + SAT\" [default = %s]\n", fSat? "SAT only": "FRAIG + SAT" );
- Abc_Print( -2, "\t-n : toggle ignoring names when matching CIs/COs [default = %s]\n", fIgnoreNames? "yes": "no" );
+ Abc_Print( -2, "\t-n : toggle how CIs/COs are matched (by name or by order) [default = %s]\n", fIgnoreNames? "by order": "by name" );
Abc_Print( -2, "\t-v : toggle verbose output [default = %s]\n", fVerbose? "yes": "no" );
Abc_Print( -2, "\t-h : print the command usage\n");
Abc_Print( -2, "\tfile1 : (optional) the file with the first network\n");
@@ -20832,7 +20832,7 @@ usage:
Abc_Print( -2, "\t-r : toggles forward retiming at the beginning [default = %s]\n", pSecPar->fRetimeFirst? "yes": "no" );
Abc_Print( -2, "\t-m : toggles min-register retiming [default = %s]\n", pSecPar->fRetimeRegs? "yes": "no" );
Abc_Print( -2, "\t-f : toggles the internal use of fraiging [default = %s]\n", pSecPar->fFraiging? "yes": "no" );
- Abc_Print( -2, "\t-n : toggle ignoring names when matching PIs/POs [default = %s]\n", fIgnoreNames? "yes": "no" );
+ Abc_Print( -2, "\t-n : toggle how CIs/COs are matched (by name or by order) [default = %s]\n", fIgnoreNames? "by order": "by name" );
Abc_Print( -2, "\t-v : toggles verbose output [default = %s]\n", pSecPar->fVerbose? "yes": "no" );
Abc_Print( -2, "\t-w : toggles additional verbose output [default = %s]\n", pSecPar->fVeryVerbose? "yes": "no" );
Abc_Print( -2, "\t-h : print the command usage\n");