3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-01 13:39:28 +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

@ -18,11 +18,11 @@ Revision History:
--*/
#ifdef Z3DEBUG
#include <cmath>
#include <string>
#include "util/lp/matrix.h"
namespace lp {
#ifdef Z3DEBUG
template <typename T, typename X>
bool matrix<T, X>::is_equal(const matrix<T, X>& other) {
if (other.row_count() != row_count() || other.column_count() != column_count())
@ -67,7 +67,7 @@ void apply_to_vector(matrix<T, X> & m, T * w) {
delete [] wc;
}
#endif
unsigned get_width_of_column(unsigned j, vector<vector<std::string>> & A) {
unsigned r = 0;
@ -132,4 +132,3 @@ void print_matrix(matrix<T, X> const * m, std::ostream & out) {
}
}
#endif