3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-01-21 01:24:43 +00:00

fix #4359 and regression to #3270

This commit is contained in:
Nikolaj Bjorner 2020-05-18 12:41:42 -07:00
parent 1c760b04cf
commit 78a4717c06
4 changed files with 37 additions and 29 deletions

View file

@ -101,12 +101,16 @@ std::ostream& dep_intervals::display(std::ostream& out, const interval& i) const
out << rational(m_imanager.upper(i)) << (m_imanager.upper_is_open(i)? ")":"]");
}
if (i.m_lower_dep) {
// out << "\nlower deps\n";
// TBD: print_dependencies(i.m_lower_dep, out);
vector<unsigned, false> ex;
linearize(i.m_lower_dep, ex);
out << " ld";
for (unsigned d : ex) out << " " << d;
}
if (i.m_upper_dep) {
// out << "\nupper deps\n";
// TBD: print_dependencies(i.m_upper_dep, out);
vector<unsigned, false> ex;
linearize(i.m_upper_dep, ex);
out << " ud";
for (unsigned d : ex) out << " " << d;
}
return out;
}