mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 06:03:23 +00:00
update sat solver signature
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
ff64adf292
commit
0c750bc714
2 changed files with 3 additions and 3 deletions
|
@ -685,8 +685,8 @@ namespace sat {
|
||||||
// Search
|
// Search
|
||||||
//
|
//
|
||||||
// -----------------------
|
// -----------------------
|
||||||
lbool solver::check() {
|
lbool solver::check(unsigned num_lits, literal const* lits) {
|
||||||
IF_VERBOSE(2, verbose_stream() << "(sat.sat-solver using the new SAT solver)\n";);
|
IF_VERBOSE(2, verbose_stream() << "(sat.sat-solver using the efficient SAT solver)\n";);
|
||||||
SASSERT(scope_lvl() == 0);
|
SASSERT(scope_lvl() == 0);
|
||||||
#ifdef CLONE_BEFORE_SOLVING
|
#ifdef CLONE_BEFORE_SOLVING
|
||||||
if (m_mc.empty()) {
|
if (m_mc.empty()) {
|
||||||
|
|
|
@ -250,7 +250,7 @@ namespace sat {
|
||||||
//
|
//
|
||||||
// -----------------------
|
// -----------------------
|
||||||
public:
|
public:
|
||||||
lbool check();
|
lbool check(unsigned num_lits = 0, literal const* lits = 0);
|
||||||
model const & get_model() const { return m_model; }
|
model const & get_model() const { return m_model; }
|
||||||
model_converter const & get_model_converter() const { return m_mc; }
|
model_converter const & get_model_converter() const { return m_mc; }
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue