Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Kučera Petr RNDr. Ph.D.
PCCompile
Commits
8c1e6682
Commit
8c1e6682
authored
Jan 29, 2022
by
Kučera Petr RNDr. Ph.D.
Browse files
Log output
parent
ef2e1860
Changes
3
Hide whitespace changes
Inline
Side-by-side
lib/cadical_bind.cpp
View file @
8c1e6682
...
...
@@ -10,6 +10,7 @@
void
SUBool
::
CadicalBind
::
SolverInit
()
{
logs
.
TLog
(
3
)
<<
"Initializing CaDiCaL solver"
<<
std
::
endl
;
mSolver
=
std
::
make_unique
<
CaDiCaL
::
Solver
>
();
mResult
=
PartialValue
::
UNDEF
;
mSolver
->
set
(
"seed"
,
sub_rand
()
%
2147483647
);
...
...
lib/glucose_bind.h
View file @
8c1e6682
...
...
@@ -168,6 +168,7 @@ template <class Solver>
bool
SUBool
::
GlucoseBind
<
Solver
>::
Reset
(
const
CNF
&
cnf
)
{
logs
.
TLog
(
3
)
<<
"Initializing Glucose solver"
<<
std
::
endl
;
mSolver
=
std
::
make_unique
<
Solver
>
(
mAdapt
);
mResult
=
PartialValue
::
UNDEF
;
return
AddCnf
(
cnf
);
...
...
lib/kissat_bind.h
View file @
8c1e6682
...
...
@@ -122,6 +122,7 @@ template <class Solver>
bool
SUBool
::
KissatBind
<
Solver
>::
Reset
(
const
CNF
&
cnf
)
{
logs
.
TLog
(
3
)
<<
"Initializing Kissat solver"
<<
std
::
endl
;
mSolver
=
std
::
make_unique
<
Solver
>
(
mAdapt
);
mResult
=
PartialValue
::
UNDEF
;
return
AddCnf
(
cnf
);
...
...
Write
Preview
Supports
Markdown
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