summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abc.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2018-04-15 21:23:22 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2018-04-15 21:23:22 -0700
commit098103012dc53a77087750f40bd04ef22be55a52 (patch)
tree1f493d90ce359b673a946183d6d52c20ebbef892 /src/base/abci/abc.c
parent37504a492a86e2d20152bd08664887965654b130 (diff)
downloadabc-098103012dc53a77087750f40bd04ef22be55a52.tar.gz
abc-098103012dc53a77087750f40bd04ef22be55a52.tar.bz2
abc-098103012dc53a77087750f40bd04ef22be55a52.zip
Memory abstraction.
Diffstat (limited to 'src/base/abci/abc.c')
-rw-r--r--src/base/abci/abc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 83797ec7..0ff564dc 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -26581,6 +26581,7 @@ usage:
Abc_Print( -2, "\t a toolkit for constraint manipulation\n" );
Abc_Print( -2, "\t if constraints are absent, detect them functionally\n" );
Abc_Print( -2, "\t if constraints are present, profiles them using random simulation\n" );
+ Abc_Print( -2, "\t (constraints fail when any of them becomes 1 in any timeframe)\n" );
Abc_Print( -2, "\t-F num : the max number of timeframes to consider [default = %d]\n", nFrames );
Abc_Print( -2, "\t-C num : the max number of conflicts in SAT solving [default = %d]\n", nConfs );
Abc_Print( -2, "\t-P num : the max number of propagations in SAT solving [default = %d]\n", nProps );
@@ -26818,6 +26819,7 @@ int Abc_CommandFold( Abc_Frame_t * pAbc, int argc, char ** argv )
usage:
Abc_Print( -2, "usage: fold [-cvh]\n" );
Abc_Print( -2, "\t folds constraints represented as separate outputs\n" );
+ Abc_Print( -2, "\t (constraints fail when any of them becomes 1 in any timeframe)\n" );
Abc_Print( -2, "\t-c : toggle complementing constraints while folding [default = %s]\n", fCompl? "yes": "no" );
Abc_Print( -2, "\t-v : toggle printing verbose information [default = %s]\n", fVerbose? "yes": "no" );
Abc_Print( -2, "\t-h : print the command usage\n");