Skip to content

Commit 128d5b4

Browse files
committed
change type of m_e_matrix
Signed-off-by: Lev Nachmanson <[email protected]>
1 parent a63e0d8 commit 128d5b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/math/lp/dioph_eq.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ namespace lp {
148148
};
149149
vector<eprime_entry> m_eprime;
150150
// the terms are stored in m_A and m_c
151-
static_matrix<mpq, numeric_pair<mpq>> m_e_matrix; // the rows of the matrix are the terms, without the constant part
151+
static_matrix<mpq, mpq> m_e_matrix; // the rows of the matrix are the terms, without the constant part
152152
int_solver& lia;
153153
lar_solver& lra;
154154
explanation m_infeas_explanation;
@@ -209,7 +209,7 @@ namespace lp {
209209

210210

211211
void init() {
212-
m_e_matrix = static_matrix<mpq, impq>(lra.row_count(), lra.column_count());
212+
m_e_matrix = static_matrix<mpq, mpq>(lra.row_count(), lra.column_count());
213213
m_report_branch = false;
214214
unsigned n_of_rows = lra.A_r().row_count();
215215
m_k2s.clear();

0 commit comments

Comments
 (0)