3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-12-15 08:48:58 +00:00

We need more clause names

This commit is contained in:
Jakob Rath 2023-02-03 15:51:53 +01:00
parent bdf20f513b
commit 5678c1c592
5 changed files with 42 additions and 26 deletions

View file

@ -117,6 +117,8 @@ namespace polysat {
auto const& max = p.manager().max_value();
// p * q >= max + 1 <=> q >= (max + 1)/p <=> q >= ceil((max+1)/p)
auto bound = ceil((max + 1) / p.val());
SASSERT(bound * p.val() > max);
SASSERT((bound - 1) * p.val() <= max);
//
// the clause that explains bound <= q or bound > q
@ -126,20 +128,20 @@ namespace polysat {
//
signed_constraint sc(this, is_positive);
signed_constraint premise = is_positive ? s.ule(p0, p.val()) : s.ule(p.val(), p0);
signed_constraint conseq = is_positive ? s.ule(bound, q0) : s.ult(q0, bound);
SASSERT(premise.is_currently_true(s));
SASSERT(bound * p.val() > max);
SASSERT((bound - 1) * p.val() <= max);
clause_builder cb(s);
cb.insert_eval(~sc);
cb.insert_eval(~premise);
cb.insert(conseq);
clause_ref just = cb.build();
SASSERT(just);
s.add_clause(*just);
SASSERT(s.m_bvars.is_true(conseq.blit()));
if (is_positive) {
clause_builder lemma(s, "Ovfl(p, q) & p <= p.val() ==> q >= bound");
lemma.insert_eval(~sc);
lemma.insert_eval(~s.ule(p0, p.val()));
lemma.insert(s.ule(bound, q0));
s.add_clause(lemma.build());
}
else {
clause_builder lemma(s, "~Ovfl(p, q) & p >= p.val() ==> q < bound");
lemma.insert_eval(~sc);
lemma.insert_eval(~s.ule(p.val(), p0));
lemma.insert(s.ult(q0, bound));
s.add_clause(lemma.build());
}
return true;
}