3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-26 07:43:41 +00:00

handle empty clauses created as lemmas as unsat state.

add unit tests
This commit is contained in:
Nikolaj Bjorner 2021-09-19 15:43:47 -04:00
parent c69c316b27
commit 1e3ff3179e
10 changed files with 113 additions and 80 deletions

View file

@ -1643,6 +1643,13 @@ namespace dd {
return *this; return *this;
} }
pdd& pdd::operator=(unsigned k) {
m.dec_ref(root);
root = m.mk_val(k).root;
m.inc_ref(root);
return *this;
}
std::ostream& operator<<(std::ostream& out, pdd const& b) { return b.display(out); } std::ostream& operator<<(std::ostream& out, pdd const& b) { return b.display(out); }
void pdd_iterator::next() { void pdd_iterator::next() {

View file

@ -386,6 +386,7 @@ namespace dd {
pdd(pdd const& other): root(other.root), m(other.m) { m.inc_ref(root); } pdd(pdd const& other): root(other.root), m(other.m) { m.inc_ref(root); }
pdd(pdd && other) noexcept : root(0), m(other.m) { std::swap(root, other.root); } pdd(pdd && other) noexcept : root(0), m(other.m) { std::swap(root, other.root); }
pdd& operator=(pdd const& other); pdd& operator=(pdd const& other);
pdd& operator=(unsigned k);
~pdd() { m.dec_ref(root); } ~pdd() { m.dec_ref(root); }
pdd lo() const { return pdd(m.lo(root), m); } pdd lo() const { return pdd(m.lo(root), m); }
pdd hi() const { return pdd(m.hi(root), m); } pdd hi() const { return pdd(m.hi(root), m); }

View file

@ -51,6 +51,14 @@ namespace polysat {
out << " \\/ "; out << " \\/ ";
out << lit; out << lit;
} }
if (m_dep) {
ptr_vector<p_dependency> todo;
todo.push_back(m_dep.get());
vector<unsigned, false> vs;
poly_dep_manager::linearize_todo(todo, vs);
out << " deps ...";
// out << "| " << vs;
}
return out; return out;
} }

View file

@ -215,7 +215,7 @@ namespace polysat {
s().assign_bool(s().level(*lemma), c.blit(), lemma.get(), nullptr); s().assign_bool(s().level(*lemma), c.blit(), lemma.get(), nullptr);
} }
clause_builder conflict_core::build_core_lemma() { clause_builder conflict_core::build_lemma() {
LOG_H3("Build lemma from core"); LOG_H3("Build lemma from core");
LOG("core: " << *this); LOG("core: " << *this);
clause_builder lemma(s()); clause_builder lemma(s());
@ -243,9 +243,6 @@ namespace polysat {
return lemma; return lemma;
} }
clause_builder conflict_core::build_lemma() {
return build_core_lemma();
}
bool conflict_core::resolve_value(pvar v, vector<signed_constraint> const& cjust_v) { bool conflict_core::resolve_value(pvar v, vector<signed_constraint> const& cjust_v) {
// NOTE: // NOTE:

View file

@ -105,7 +105,6 @@ namespace polysat {
/** Convert the core into a lemma to be learned. */ /** Convert the core into a lemma to be learned. */
clause_builder build_lemma(); clause_builder build_lemma();
clause_builder build_core_lemma();
bool try_eliminate(pvar v); bool try_eliminate(pvar v);
bool try_saturate(pvar v); bool try_saturate(pvar v);

View file

@ -566,8 +566,10 @@ namespace polysat {
case l_false: case l_false:
continue; continue;
default: default:
if (lit2cnstr(lit).is_currently_false(*this)) if (lit2cnstr(lit).is_currently_false(*this)) {
num_choices++;
continue; continue;
}
break; break;
} }
num_choices++; num_choices++;
@ -601,6 +603,10 @@ namespace polysat {
SASSERT(m_justification[v].is_decision()); SASSERT(m_justification[v].is_decision());
clause_ref lemma = m_conflict.build_lemma().build(); clause_ref lemma = m_conflict.build_lemma().build();
if (lemma->empty()) {
report_unsat();
return;
}
m_conflict.reset(); m_conflict.reset();
backjump(get_level(v) - 1); backjump(get_level(v) - 1);
@ -644,7 +650,7 @@ namespace polysat {
// again L is in core, unless we core-reduced it away // again L is in core, unless we core-reduced it away
clause_builder reason_builder = m_conflict.build_lemma(); clause_builder reason_builder = m_conflict.build_lemma();
m_conflict.reset();
bool contains_lit = std::find(reason_builder.begin(), reason_builder.end(), ~lit); bool contains_lit = std::find(reason_builder.begin(), reason_builder.end(), ~lit);
if (!contains_lit) { if (!contains_lit) {
@ -662,6 +668,12 @@ namespace polysat {
} }
clause_ref reason = reason_builder.build(); clause_ref reason = reason_builder.build();
if (reason->empty()) {
report_unsat();
return;
}
m_conflict.reset();
std::cout << "reason " << *reason << "\n"; std::cout << "reason " << *reason << "\n";
// The lemma where 'lit' comes from. // The lemma where 'lit' comes from.
@ -751,6 +763,8 @@ namespace polysat {
LOG(" Literal " << lit << " is: " << lit2cnstr(lit)); LOG(" Literal " << lit << " is: " << lit2cnstr(lit));
SASSERT(m_bvars.value(lit) != l_true); SASSERT(m_bvars.value(lit) != l_true);
} }
if (lemma.empty())
std::cout << lemma << "\n";
SASSERT(!lemma.empty()); SASSERT(!lemma.empty());
m_constraints.store(&lemma, *this); m_constraints.store(&lemma, *this);
if (lemma.size() == 1) { if (lemma.size() == 1) {

View file

@ -31,6 +31,20 @@ Notes:
namespace polysat { namespace polysat {
ule_constraint::ule_constraint(constraint_manager& m, pdd const& l, pdd const& r) :
constraint(m, ckind_t::ule_t), m_lhs(l), m_rhs(r) {
m_vars.append(l.free_vars());
for (auto v : r.free_vars())
if (!m_vars.contains(v))
m_vars.push_back(v);
if (m_lhs.is_val() && m_rhs.is_val()) {
if (m_lhs.val() <= m_rhs.val())
m_lhs = m_rhs = 0;
else
m_lhs = 1, m_rhs = 0;
}
}
std::ostream& ule_constraint::display(std::ostream& out, lbool status) const { std::ostream& ule_constraint::display(std::ostream& out, lbool status) const {
out << m_lhs; out << m_lhs;
if (is_eq() && status == l_true) out << " == "; if (is_eq() && status == l_true) out << " == ";

View file

@ -23,13 +23,7 @@ namespace polysat {
pdd m_lhs; pdd m_lhs;
pdd m_rhs; pdd m_rhs;
ule_constraint(constraint_manager& m, pdd const& l, pdd const& r): ule_constraint(constraint_manager& m, pdd const& l, pdd const& r);
constraint(m, ckind_t::ule_t), m_lhs(l), m_rhs(r) {
m_vars.append(l.free_vars());
for (auto v : r.free_vars())
if (!m_vars.contains(v))
m_vars.push_back(v);
}
public: public:
~ule_constraint() override {} ~ule_constraint() override {}

View file

@ -722,6 +722,18 @@ namespace polysat {
s.expect_unsat(); s.expect_unsat();
} }
void permute_args(unsigned k, pdd& a, pdd& b, pdd& c) {
SASSERT(k < 6);
unsigned i = k % 3;
unsigned j = i % 2;
if (i == 1)
std::swap(a, b);
else if (i == 2)
std::swap(a, c);
if (j == 1)
std::swap(b, c);
}
// xy < xz and !Omega(x*y) => y < z // xy < xz and !Omega(x*y) => y < z
static void test_ineq_axiom1(unsigned bw = 32) { static void test_ineq_axiom1(unsigned bw = 32) {
auto const bound = rational::power_of_two(bw-1); auto const bound = rational::power_of_two(bw-1);
@ -751,53 +763,37 @@ namespace polysat {
s.expect_unsat(); s.expect_unsat();
} }
for (unsigned i = 0; i < 3; ++i) { for (unsigned i = 0; i < 6; ++i) {
for (unsigned j = 0; j < 2; ++j) { scoped_solver s(__func__);
scoped_solver s(__func__); auto x = s.var(s.add_var(bw));
auto a = s.var(s.add_var(bw)); auto y = s.var(s.add_var(bw));
auto b = s.var(s.add_var(bw)); auto z = s.var(s.add_var(bw));
auto c = s.var(s.add_var(bw)); permute_args(i, x, y, z);
auto x = a, y = b, z = c; s.add_ult(x * y, x * z);
if (i == 1) s.add_ule(z, y);
std::swap(x, y); s.add_ult(x, bound);
else if (i == 2) s.add_ult(y, bound);
std::swap(x, z); s.check();
if (j == 1) s.expect_unsat();
std::swap(y, z);
s.add_ult(x * y, x * z);
s.add_ule(z, y);
s.add_ult(x, bound);
s.add_ult(y, bound);
s.check();
s.expect_unsat();
}
} }
} }
// xy <= xz & !Omega(x*y) => y <= z or x = 0 // xy <= xz & !Omega(x*y) => y <= z or x = 0
static void test_ineq_axiom2(unsigned bw = 32) { static void test_ineq_axiom2(unsigned bw = 32) {
auto const bound = rational::power_of_two(bw - 1); auto const bound = rational::power_of_two(bw - 1);
for (unsigned i = 0; i < 3; ++i) { for (unsigned i = 0; i < 6; ++i) {
for (unsigned j = 0; j < 2; ++j) { scoped_solver s(__func__);
scoped_solver s(__func__); auto x = s.var(s.add_var(bw));
auto a = s.var(s.add_var(bw)); auto y = s.var(s.add_var(bw));
auto b = s.var(s.add_var(bw)); auto z = s.var(s.add_var(bw));
auto c = s.var(s.add_var(bw)); permute_args(i, x, y, z);
auto x = a, y = b, z = c; s.add_ult(x * y, x * z);
if (i == 1) s.add_ult(z, y);
std::swap(x, y); s.add_ult(x, bound);
else if (i == 2) s.add_ult(y, bound);
std::swap(x, z); s.add_diseq(x);
if (j == 1) s.check();
std::swap(y, z); s.expect_unsat();
s.add_ult(x * y, x * z);
s.add_ult(z, y);
s.add_ult(x, bound);
s.add_ult(y, bound);
s.add_diseq(x);
s.check();
s.expect_unsat();
}
} }
} }

View file

@ -47,6 +47,28 @@ public:
value const& leaf_value() const { SASSERT(is_leaf()); return static_cast<leaf const*>(this)->m_value; } value const& leaf_value() const { SASSERT(is_leaf()); return static_cast<leaf const*>(this)->m_value; }
}; };
static void linearize_todo(ptr_vector<dependency>& todo, vector<value, false>& vs) {
unsigned qhead = 0;
while (qhead < todo.size()) {
dependency* d = todo[qhead];
qhead++;
if (d->is_leaf()) {
vs.push_back(to_leaf(d)->m_value);
}
else {
for (unsigned i = 0; i < 2; i++) {
dependency* child = to_join(d)->m_children[i];
if (!child->is_marked()) {
todo.push_back(child);
child->mark();
}
}
}
}
for (auto* d : todo)
d->unmark();
}
private: private:
struct join : public dependency { struct join : public dependency {
dependency * m_children[2]; dependency * m_children[2];
@ -191,26 +213,7 @@ public:
return false; return false;
} }
void linearize(vector<value, false>& vs) {
unsigned qhead = 0;
while (qhead < m_todo.size()) {
dependency * d = m_todo[qhead];
qhead++;
if (d->is_leaf()) {
vs.push_back(to_leaf(d)->m_value);
}
else {
for (unsigned i = 0; i < 2; i++) {
dependency * child = to_join(d)->m_children[i];
if (!child->is_marked()) {
m_todo.push_back(child);
child->mark();
}
}
}
}
unmark_todo();
}
void linearize(dependency * d, vector<value, false> & vs) { void linearize(dependency * d, vector<value, false> & vs) {
if (!d) if (!d)
@ -218,7 +221,7 @@ public:
m_todo.reset(); m_todo.reset();
d->mark(); d->mark();
m_todo.push_back(d); m_todo.push_back(d);
linearize(vs); linearize_todo(m_todo, vs);
} }
void linearize(ptr_vector<dependency>& deps, vector<value, false> & vs) { void linearize(ptr_vector<dependency>& deps, vector<value, false> & vs) {
@ -231,7 +234,7 @@ public:
m_todo.push_back(d); m_todo.push_back(d);
} }
} }
linearize(vs); linearize_todo(m_todo, vs);
} }
}; };