3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-19 19:02:02 +00:00

Debug-fix for theory_seq. Fixes #418.

This commit is contained in:
Christoph M. Wintersteiger 2016-01-14 13:07:48 +00:00
parent 3ff97357a3
commit 0f082578cb

View file

@ -1240,7 +1240,7 @@ void theory_seq::display_deps(std::ostream& out, dependency* dep) const {
for (unsigned i = 0; i < lits.size(); ++i) { for (unsigned i = 0; i < lits.size(); ++i) {
literal lit = lits[i]; literal lit = lits[i];
get_context().display_literals_verbose(out << " ", 1, &lit); get_context().display_literals_verbose(out << " ", 1, &lit);
tout << "\n"; out << "\n";
} }
} }