summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2019-12-05 14:37:02 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2019-12-05 14:37:02 -0800
commit95a6aa285c3afb6f4c5ea82a1105fb0d64f71a7d (patch)
tree306677c1202dda2d6de7163a2d013a4a2c22d10f /src
parent1e602492d839cf2be4c26e0826590300153ced8f (diff)
downloadabc-95a6aa285c3afb6f4c5ea82a1105fb0d64f71a7d.tar.gz
abc-95a6aa285c3afb6f4c5ea82a1105fb0d64f71a7d.tar.bz2
abc-95a6aa285c3afb6f4c5ea82a1105fb0d64f71a7d.zip
Renaming options of command &sat.
Diffstat (limited to 'src')
-rw-r--r--src/base/abci/abc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 37bdc7ec..17e255b8 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -34860,7 +34860,7 @@ int Abc_CommandAbc9Sat( Abc_Frame_t * pAbc, int argc, char ** argv )
goto usage;
break;
case 'a':
- fNewSolver ^= 1;
+ pPars->fSaveCexes ^= 1;
break;
case 'n':
pPars->fNonChrono ^= 1;
@@ -34875,7 +34875,7 @@ int Abc_CommandAbc9Sat( Abc_Frame_t * pAbc, int argc, char ** argv )
fCSat ^= 1;
break;
case 'x':
- pPars->fSaveCexes ^= 1;
+ fNewSolver ^= 1;
break;
case 'v':
pPars->fVerbose ^= 1;
@@ -34923,12 +34923,12 @@ usage:
Abc_Print( -2, "\t-C num : the max number of conflicts at a node [default = %d]\n", pPars->nBTLimit );
Abc_Print( -2, "\t-S num : the min number of variables to recycle the solver [default = %d]\n", pPars->nSatVarMax );
Abc_Print( -2, "\t-N num : the min number of calls to recycle the solver [default = %d]\n", pPars->nCallsRecycle );
- Abc_Print( -2, "\t-a : toggle using new solver [default = %s]\n", fNewSolver? "yes": "no" );
+ Abc_Print( -2, "\t-a : toggle solving all outputs and saving counter-examples [default = %s]\n", pPars->fSaveCexes? "yes": "no" );
Abc_Print( -2, "\t-n : toggle using non-chronological backtracking [default = %s]\n", pPars->fNonChrono? "yes": "no" );
Abc_Print( -2, "\t-m : toggle miter vs. any circuit [default = %s]\n", pPars->fCheckMiter? "miter": "circuit" );
Abc_Print( -2, "\t-c : toggle using circuit-based SAT solver [default = %s]\n", fCSat? "yes": "no" );
Abc_Print( -2, "\t-t : toggle using learning in curcuit-based solver [default = %s]\n", pPars->fLearnCls? "yes": "no" );
- Abc_Print( -2, "\t-x : toggle solving all outputs and saving counter-examples [default = %s]\n", pPars->fSaveCexes? "yes": "no" );
+ Abc_Print( -2, "\t-x : toggle using new solver [default = %s]\n", fNewSolver? "yes": "no" );
Abc_Print( -2, "\t-v : toggle printing verbose information [default = %s]\n", pPars->fVerbose? "yes": "no" );
Abc_Print( -2, "\t-h : print the command usage\n");
return 1;