3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-09 01:11:55 +00:00

rm lu related fields from lp_core_solver_base.h

This commit is contained in:
Lev Nachmanson 2023-03-07 11:34:43 -08:00
parent f351eb3ab2
commit f6445891f3
9 changed files with 8 additions and 205 deletions

View file

@ -24,14 +24,6 @@ Revision History:
#include "math/lp/lp_settings.h"
namespace lp {
template <typename T>
void print_sparse_vector(const vector<T> & t, std::ostream & out) {
for (unsigned i = 0; i < t.size(); i++) {
if (is_zero(t[i]))continue;
out << "[" << i << "] = " << t[i] << ", ";
}
out << std::endl;
}
void print_vector_as_doubles(const vector<mpq> & t, std::ostream & out) {
for (unsigned i = 0; i < t.size(); i++)