mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +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 {
|
||||
out << "xor clauses: " << m_xorclauses.size() << "\n";
|
||||
for (auto const& x : m_xorclauses)
|
||||
out << x << "\n";
|
||||
return out;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue