From 128d5b4fa0cdeabbbbffc410ac68d4eec2cc3f98 Mon Sep 17 00:00:00 2001 From: Lev Nachmanson Date: Tue, 15 Oct 2024 08:19:48 -0700 Subject: [PATCH] change type of m_e_matrix Signed-off-by: Lev Nachmanson --- src/math/lp/dioph_eq.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();