summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2014-10-26 08:57:13 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2014-10-26 08:57:13 -0700
commit836723cf73a721e47faa22cf59a00352cdefeb99 (patch)
treec1449e71bc8303c20bf1c9b2ebfc33ec8b40cd87
parentb8556e7edf263b266e3028901c276f925be5f470 (diff)
downloadabc-836723cf73a721e47faa22cf59a00352cdefeb99.tar.gz
abc-836723cf73a721e47faa22cf59a00352cdefeb99.tar.bz2
abc-836723cf73a721e47faa22cf59a00352cdefeb99.zip
Changing switch -v in 'qbf' and '&qbf' to be non-verbose by default.
-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 006d691d..1f10be14 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -12895,7 +12895,7 @@ int Abc_CommandQbf( Abc_Frame_t * pAbc, int argc, char ** argv )
nPars = -1;
nIters = 500;
fDumpCnf = 0;
- fVerbose = 1;
+ fVerbose = 0;
Extra_UtilGetoptReset();
while ( ( c = Extra_UtilGetopt( argc, argv, "PIdvh" ) ) != EOF )
{
@@ -35908,7 +35908,7 @@ int Abc_CommandAbc9Qbf( Abc_Frame_t * pAbc, int argc, char ** argv )
int nTimeOut = 0;
int fDumpCnf = 0;
int fQuantX = 0;
- int fVerbose = 1;
+ int fVerbose = 0;
Extra_UtilGetoptReset();
while ( ( c = Extra_UtilGetopt( argc, argv, "PICTdqvh" ) ) != EOF )
{