diff --git a/src/math/lp/dioph_eq.cpp b/src/math/lp/dioph_eq.cpp index e89be3c61..fa98f101d 100644 --- a/src/math/lp/dioph_eq.cpp +++ b/src/math/lp/dioph_eq.cpp @@ -148,7 +148,7 @@ namespace lp { }; vector m_eprime; // the terms are stored in m_A and m_c - static_matrix> m_e_matrix; // the rows of the matrix are the terms, without the constant part + static_matrix m_e_matrix; // the rows of the matrix are the terms, without the constant part int_solver& lia; lar_solver& lra; explanation m_infeas_explanation; @@ -209,7 +209,7 @@ namespace lp { void init() { - m_e_matrix = static_matrix(lra.row_count(), lra.column_count()); + m_e_matrix = static_matrix(lra.row_count(), lra.column_count()); m_report_branch = false; unsigned n_of_rows = lra.A_r().row_count(); m_k2s.clear();