summaryrefslogtreecommitdiffstats
path: root/src/base/abci
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2013-10-31 14:18:31 -0400
committerAlan Mishchenko <alanmi@berkeley.edu>2013-10-31 14:18:31 -0400
commit6582e10a82b705981344f41953e39dc85612b530 (patch)
treedbbcaa04a155bfbb7bf563c3719d1f4236cca3cd /src/base/abci
parentf620a857d36343b2e475e3b60537fa56fee4d65c (diff)
downloadabc-6582e10a82b705981344f41953e39dc85612b530.tar.gz
abc-6582e10a82b705981344f41953e39dc85612b530.tar.bz2
abc-6582e10a82b705981344f41953e39dc85612b530.zip
Specialized induction check.
Diffstat (limited to 'src/base/abci')
-rw-r--r--src/base/abci/abc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 98516f42..62422a2c 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -32590,7 +32590,7 @@ int Abc_CommandAbc9ICheck( Abc_Frame_t * pAbc, int argc, char ** argv )
}
nFramesMax = atoi(argv[globalUtilOptind]);
globalUtilOptind++;
- if ( nFramesMax < 0 )
+ if ( nFramesMax <= 0 )
goto usage;
break;
case 'T':
@@ -32628,8 +32628,8 @@ int Abc_CommandAbc9ICheck( Abc_Frame_t * pAbc, int argc, char ** argv )
usage:
Abc_Print( -2, "usage: &icheck [-MT num] [-cvh]\n" );
- Abc_Print( -2, "\t performs specialized inductiveness check\n" );
- Abc_Print( -2, "\t-M num : the number of timeframes used for inductiion [default = %d]\n", nFramesMax );
+ Abc_Print( -2, "\t performs specialized induction check\n" );
+ Abc_Print( -2, "\t-M num : the number of timeframes used for induction [default = %d]\n", nFramesMax );
Abc_Print( -2, "\t-T num : approximate global runtime limit in seconds [default = %d]\n", nTimeOut );
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");