mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 06:03:23 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8b0d540cca
commit
7d73069798
1 changed files with 0 additions and 2 deletions
|
@ -105,7 +105,6 @@ namespace sat {
|
||||||
init_phase();
|
init_phase();
|
||||||
lbool st = l_undef;
|
lbool st = l_undef;
|
||||||
while (s.rlimit().inc() && st == l_undef) {
|
while (s.rlimit().inc() && st == l_undef) {
|
||||||
std::cout << "walk " << st << "\n";
|
|
||||||
if (inconsistent() && !m_decisions.empty()) do_pop();
|
if (inconsistent() && !m_decisions.empty()) do_pop();
|
||||||
else if (inconsistent()) st = l_false;
|
else if (inconsistent()) st = l_false;
|
||||||
else if (should_restart()) restart();
|
else if (should_restart()) restart();
|
||||||
|
@ -145,7 +144,6 @@ namespace sat {
|
||||||
lbool unit_walk::do_backjump() {
|
lbool unit_walk::do_backjump() {
|
||||||
unsigned backjump_level = m_decisions.size(); // - (m_decisions.size()/20);
|
unsigned backjump_level = m_decisions.size(); // - (m_decisions.size()/20);
|
||||||
lbool st = update_priority(backjump_level);
|
lbool st = update_priority(backjump_level);
|
||||||
std::cout << "update " << st << "\n";
|
|
||||||
switch (st) {
|
switch (st) {
|
||||||
case l_true: return l_true;
|
case l_true: return l_true;
|
||||||
case l_false: break; // TBD
|
case l_false: break; // TBD
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue