3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-12-08 14:14:11 -08:00
parent c202779f52
commit 8c81b64f0f

View file

@ -372,7 +372,6 @@ std::ostream& PackedMatrix::display_dense(std::ostream& out) const {
std::ostream& EGaussian::display(std::ostream& out) const {
if (m_mat.num_rows() == 0)
return out;
out << "xors\n";
for (auto const& row : m_mat) {
bool first = true;
for (int i = 0; i < row.get_size() * 64; ++i) {