Call glucose with -verb=0.
* src/misc/satsolver.cc: Call glucose with -verb=0. * src/bin/man/spot-x.x: Document it.
This commit is contained in:
parent
977a6dfaee
commit
e5874ee4c7
2 changed files with 8 additions and 7 deletions
|
|
@ -14,12 +14,13 @@ spot-x \- Common fine-tuning options.
|
||||||
.TP
|
.TP
|
||||||
\fBSPOT_SATSOLVER\fR
|
\fBSPOT_SATSOLVER\fR
|
||||||
If set, this variable should indicate how to call a SAT\-solver. This
|
If set, this variable should indicate how to call a SAT\-solver. This
|
||||||
is used by the sat\-minimize option described above. The default value
|
is used by the sat\-minimize option described above. The default
|
||||||
is \f(CW"glucose %I >%O"\fR. The escape sequences \f(CW%I\fR and \f(CW%O\fR
|
value is \f(CW"glucose -verb=0 %I >%O"\fR. The escape sequences
|
||||||
respectively denote the names of the input and output files. These
|
\f(CW%I\fR and \f(CW%O\fR respectively denote the names of the input
|
||||||
temporary files are created in the directory specified by \fBSPOT_TMPDIR\fR
|
and output files. These temporary files are created in the directory
|
||||||
or \fBTMPDIR\fR (see below). The SAT-solver should follow the convention
|
specified by \fBSPOT_TMPDIR\fR or \fBTMPDIR\fR (see below). The
|
||||||
of the SAT Competition for its input and output format.
|
SAT-solver should follow the convention of the SAT Competition for its
|
||||||
|
input and output format.
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
\fBSPOT_TMPDIR\fR, \fBTMPDIR\fR
|
\fBSPOT_TMPDIR\fR, \fBTMPDIR\fR
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ namespace spot
|
||||||
satsolver = getenv("SPOT_SATSOLVER");
|
satsolver = getenv("SPOT_SATSOLVER");
|
||||||
if (!satsolver)
|
if (!satsolver)
|
||||||
{
|
{
|
||||||
satsolver = "glucose %I >%O";
|
satsolver = "glucose -verb=0 %I >%O";
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
prime(satsolver);
|
prime(satsolver);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue