3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-03 14:33:56 +00:00

enable printing in Release

Signed-off-by: Lev <levnach@hotmail.com>
This commit is contained in:
Lev 2018-07-09 20:48:39 -07:00
parent 5c712d471f
commit c4c52ad104
13 changed files with 10 additions and 33 deletions

View file

@ -25,7 +25,6 @@ Revision History:
#include "util/debug.h"
#include "util/lp/lu.h"
namespace lp {
#ifdef Z3DEBUG
template <typename T, typename X, typename M> // print the nr x nc submatrix at the top left corner
void print_submatrix(square_sparse_matrix<T, X> & m, unsigned mr, unsigned nc, std::ostream & out) {
vector<vector<std::string>> A;
@ -62,9 +61,6 @@ void print_matrix(M &m, std::ostream & out) {
print_matrix_with_widths(A, widths, out);
}
#endif
template <typename T, typename X>
one_elem_on_diag<T, X>::one_elem_on_diag(const one_elem_on_diag & o) {
m_i = o.m_i;