mirror of
https://github.com/Z3Prover/z3
synced 2025-10-10 01:41:57 +00:00
reorder fields, rename overload name clash
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
64f4c9794d
commit
75a40d8f8e
7 changed files with 23 additions and 28 deletions
|
@ -3885,7 +3885,14 @@ std::ostream& theory_seq::display_disequation(std::ostream& out, ne const& e) co
|
|||
out << "\n";
|
||||
}
|
||||
for (unsigned j = 0; j < e.ls().size(); ++j) {
|
||||
out << e.ls(j) << " != " << e.rs(j) << "\n";
|
||||
for (expr* t : e.ls(j)) {
|
||||
out << mk_bounded_pp(t, m) << " ";
|
||||
}
|
||||
out << " != ";
|
||||
for (expr* t : e.rs(j)) {
|
||||
out << mk_bounded_pp(t, m) << " ";
|
||||
}
|
||||
out << "\n";
|
||||
}
|
||||
if (e.dep()) {
|
||||
display_deps(out, e.dep());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue