3
0
Fork 0
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:
Nikolaj Bjorner 2022-12-07 09:51:44 -08:00
parent a32da52350
commit 923fcf4771

View file

@ -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;
}