Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abc
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
abc
Commits
95a6aa28
Commit
95a6aa28
authored
Dec 05, 2019
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renaming options of command &sat.
parent
1e602492
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/base/abci/abc.c
+4
-4
No files found.
src/base/abci/abc.c
View file @
95a6aa28
...
...
@@ -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
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment