mirror of
https://github.com/Z3Prover/z3
synced 2025-05-06 07:15:47 +00:00
Re-enable saturation
This commit is contained in:
parent
4aa04fa475
commit
630276dbad
3 changed files with 9 additions and 8 deletions
|
@ -80,7 +80,7 @@ namespace polysat {
|
|||
// return false;
|
||||
SASSERT(c.bvalue(s) != l_true);
|
||||
|
||||
m_lemma.insert(c);
|
||||
m_lemma.insert_eval(c);
|
||||
core.add_lemma(m_rule, m_lemma.build());
|
||||
return true;
|
||||
}
|
||||
|
@ -91,7 +91,7 @@ namespace polysat {
|
|||
}
|
||||
|
||||
void saturation::insert_omega(pdd const& x, pdd const& y) {
|
||||
m_lemma.insert(s.umul_ovfl(x, y));
|
||||
m_lemma.insert_eval(s.umul_ovfl(x, y));
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue