mirror of
https://github.com/Z3Prover/z3
synced 2025-08-05 10:50:24 +00:00
attempting to fix display method
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a32da52350
commit
923fcf4771
1 changed files with 3 additions and 0 deletions
|
@ -311,6 +311,9 @@ namespace xr {
|
||||||
}
|
}
|
||||||
|
|
||||||
std::ostream& solver::display(std::ostream& out) const {
|
std::ostream& solver::display(std::ostream& out) const {
|
||||||
|
out << "xor clauses: " << m_xorclauses.size() << "\n";
|
||||||
|
for (auto const& x : m_xorclauses)
|
||||||
|
out << x << "\n";
|
||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue