mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
change type of m_e_matrix
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
a63e0d801e
commit
128d5b4fa0
|
@ -148,7 +148,7 @@ namespace lp {
|
||||||
};
|
};
|
||||||
vector<eprime_entry> m_eprime;
|
vector<eprime_entry> m_eprime;
|
||||||
// the terms are stored in m_A and m_c
|
// the terms are stored in m_A and m_c
|
||||||
static_matrix<mpq, numeric_pair<mpq>> m_e_matrix; // the rows of the matrix are the terms, without the constant part
|
static_matrix<mpq, mpq> m_e_matrix; // the rows of the matrix are the terms, without the constant part
|
||||||
int_solver& lia;
|
int_solver& lia;
|
||||||
lar_solver& lra;
|
lar_solver& lra;
|
||||||
explanation m_infeas_explanation;
|
explanation m_infeas_explanation;
|
||||||
|
@ -209,7 +209,7 @@ namespace lp {
|
||||||
|
|
||||||
|
|
||||||
void init() {
|
void init() {
|
||||||
m_e_matrix = static_matrix<mpq, impq>(lra.row_count(), lra.column_count());
|
m_e_matrix = static_matrix<mpq, mpq>(lra.row_count(), lra.column_count());
|
||||||
m_report_branch = false;
|
m_report_branch = false;
|
||||||
unsigned n_of_rows = lra.A_r().row_count();
|
unsigned n_of_rows = lra.A_r().row_count();
|
||||||
m_k2s.clear();
|
m_k2s.clear();
|
||||||
|
|
Loading…
Reference in a new issue