3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-24 03:57:51 +00:00

generalize level

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-09-15 16:46:30 +01:00
parent 7e7f88ae3d
commit 689c5b4e12
6 changed files with 40 additions and 18 deletions

View file

@ -39,7 +39,7 @@ namespace polysat {
else if (status == l_false) out << " > ";
else out << " <=/> ";
out << m_rhs;
return display_extra(out, status);
return display_extra(out);
}
std::ostream& ule_constraint::display(std::ostream& out) const {
@ -48,7 +48,8 @@ namespace polysat {
out << " == ";
else
out << " <= ";
return out << m_rhs;
out << m_rhs;
return display_extra(out);
}
void ule_constraint::narrow(solver& s, bool is_positive) {