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:
parent
f351eb3ab2
commit
f6445891f3
9 changed files with 8 additions and 205 deletions
|
@ -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++)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue