diff options
author | Mathias Soeken <mathias.soeken@epfl.ch> | 2016-08-16 18:55:20 +0200 |
---|---|---|
committer | Mathias Soeken <mathias.soeken@epfl.ch> | 2016-08-16 18:55:20 +0200 |
commit | 433b9fe722abea70066527ecf89489834c492332 (patch) | |
tree | 4e14cc847a5cd104c572ed5d8189a26411e67b7a /src/base/abci/abc.c | |
parent | 85c751fbb89658ea7688015fbbd55dac2317dc5c (diff) | |
download | abc-433b9fe722abea70066527ecf89489834c492332.tar.gz abc-433b9fe722abea70066527ecf89489834c492332.tar.bz2 abc-433b9fe722abea70066527ecf89489834c492332.zip |
Missing code for CLI integration.
Diffstat (limited to 'src/base/abci/abc.c')
-rw-r--r-- | src/base/abci/abc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c index a3b40084..0e06d22a 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -40471,13 +40471,13 @@ int Abc_CommandAbc9Exorcism( Abc_Frame_t * pAbc, int argc, char ** argv ) return 0; usage: - Abc_Print( -2, "usage: &exorcism [-Q N] [-V N] <file>\n" ); + Abc_Print( -2, "usage: &exorcism [-Q N] [-V N] [-C N] <file>\n" ); Abc_Print( -2, " performs heuristic exclusive sum-of-project minimization\n" ); Abc_Print( -2, " -Q N : minimization quality [default = %d]\n", Quality); Abc_Print( -2, " increasing this number improves quality and adds to runtime\n"); Abc_Print( -2, " -V N : verbosity level [default = %d]\n", Verbosity); Abc_Print( -2, " 0 = no output; 1 = outline; 2 = verbose\n"); - Abc_Print( -2, " -C N : maximum number of cubes in startign cover [default = %s]\n", nCubesMax ); + Abc_Print( -2, " -C N : maximum number of cubes in startign cover [default = %d]\n", nCubesMax ); // Abc_Print( -2, " -q : toggle using quantum cost [default = %s]\n", fUseQCost? "yes": "no" ); Abc_Print( -2, " <file>: the output file name in ESOP-PLA format\n"); Abc_Print( -2, "\n" ); |