diff --git a/src/math/lp/dioph_eq.cpp b/src/math/lp/dioph_eq.cpp index adfe54fed..1141dc073 100644 --- a/src/math/lp/dioph_eq.cpp +++ b/src/math/lp/dioph_eq.cpp @@ -328,6 +328,7 @@ namespace lp { public: imp(int_solver& lia, lar_solver& lra) : lia(lia), lra(lra) { lra.register_add_term_delegate([this](const lar_term*t){add_term_delegate(t);}); + lra.register_add_column_bound_delegate([this](unsigned j) {add_column_bound_delegate(j);}); } term_o get_term_from_entry(unsigned i) const { term_o t; @@ -395,15 +396,10 @@ namespace lp { } void init() { - m_e_matrix = static_matrix(); m_report_branch = false; - m_k2s.clear(); - m_fresh_definitions.clear(); m_conflict_index = -1; m_infeas_explanation.clear(); lia.get_term().clear(); - m_entries.clear(); - m_var_register.clear(); m_number_of_iterations = 0; m_branch_stack.clear(); m_lra_level = 0; @@ -1071,7 +1067,6 @@ namespace lp { if (m_branch_stack.size() == 0) { lra.stats().m_dio_branching_infeasibles++; transfer_explanations_from_closed_branches(); - enable_trace("dioph_eq"); return lia_move::conflict; } TRACE("dio_br", tout << lp_status_to_string(lra.get_status()) << std::endl; @@ -1393,7 +1388,7 @@ namespace lp { m_e_matrix.add_new_element(fresh_row, i, q); } - m_k2s.resize(std::max(k + 1, xt + 1), -1); + m_k2s.resize(k + 1, -1); m_k2s[k] = fresh_row; m_fresh_definitions.resize(xt + 1, -1); m_fresh_definitions[xt] = fresh_row; diff --git a/src/math/lp/int_solver.cpp b/src/math/lp/int_solver.cpp index 43d490c75..39ec1baeb 100644 --- a/src/math/lp/int_solver.cpp +++ b/src/math/lp/int_solver.cpp @@ -668,7 +668,7 @@ namespace lp { return display_row(out, row); } - std::ostream & int_solver::display_row(std::ostream & out, vector> const & row) const { + std::ostream & int_solver::display_row(std::ostream & out, std_vector> const & row) const { return m_imp->display_row(out, row); } diff --git a/src/math/lp/int_solver.h b/src/math/lp/int_solver.h index e72445ca5..2c42ec16f 100644 --- a/src/math/lp/int_solver.h +++ b/src/math/lp/int_solver.h @@ -89,7 +89,7 @@ public: bool shift_var(unsigned j, unsigned range); std::ostream& display_row_info(std::ostream & out, unsigned row_index) const; - std::ostream & display_row(std::ostream & out, vector> const & row) const; + std::ostream & display_row(std::ostream & out, std_vector> const & row) const; bool is_term(unsigned j) const; unsigned column_count() const; int select_int_infeasible_var(); diff --git a/src/math/lp/lar_core_solver.h b/src/math/lp/lar_core_solver.h index 05f33b94b..070fcd285 100644 --- a/src/math/lp/lar_core_solver.h +++ b/src/math/lp/lar_core_solver.h @@ -34,7 +34,7 @@ public: stacked_vector m_r_pushed_basis; vector m_r_basis; vector m_r_nbasis; - vector m_r_heading; + std_vector m_r_heading; lp_primal_core_solver> m_r_solver; // solver in rational numbers diff --git a/src/math/lp/lar_solver.h b/src/math/lp/lar_solver.h index 9e3480788..cd1dd9664 100644 --- a/src/math/lp/lar_solver.h +++ b/src/math/lp/lar_solver.h @@ -684,7 +684,7 @@ public: bool ax_is_correct() const; bool get_equality_and_right_side_for_term_on_current_x(lpvar j, mpq& rs, u_dependency*& ci, bool& upper_bound) const; bool var_is_int(lpvar v) const; - inline const vector& r_heading() const { return m_mpq_lar_core_solver.m_r_heading; } + inline const std_vector& r_heading() const { return m_mpq_lar_core_solver.m_r_heading; } inline const vector& r_basis() const { return m_mpq_lar_core_solver.r_basis(); } inline const vector& r_nbasis() const { return m_mpq_lar_core_solver.r_nbasis(); } inline bool column_is_real(unsigned j) const { return !column_is_int(j); } diff --git a/src/math/lp/lp_core_solver_base.cpp b/src/math/lp/lp_core_solver_base.cpp index e91fc15fc..ee87ba09d 100644 --- a/src/math/lp/lp_core_solver_base.cpp +++ b/src/math/lp/lp_core_solver_base.cpp @@ -30,7 +30,7 @@ template void lp::lp_core_solver_base >::init template void lp::lp_core_solver_base >::init_basis_heading_and_non_basic_columns_vector(); template lp::lp_core_solver_base >::lp_core_solver_base(lp::static_matrix >&, // vector >&, - vector&, vector &, vector &, vector >&, vector&, lp::lp_settings&, const column_namer&, const vector&, + vector&, vector &, std_vector &, vector >&, vector&, lp::lp_settings&, const column_namer&, const vector&, const vector >&, const vector >&); @@ -39,7 +39,8 @@ template lp::lp_core_solver_base::lp_core_solver_base( lp::static_matrix&, //vector&, vector&, - vector &, vector &, + vector &, + std_vector &, vector&, vector&, lp::lp_settings&, diff --git a/src/math/lp/lp_core_solver_base.h b/src/math/lp/lp_core_solver_base.h index a5b79e9c8..32170d6b7 100644 --- a/src/math/lp/lp_core_solver_base.h +++ b/src/math/lp/lp_core_solver_base.h @@ -79,7 +79,7 @@ public: // vector const & m_b; // the right side vector & m_basis; vector& m_nbasis; - vector& m_basis_heading; + std_vector& m_basis_heading; vector & m_x; // a feasible solution, the first time set in the constructor vector & m_costs; lp_settings & m_settings; @@ -124,7 +124,7 @@ public: //vector & b, // the right side vector vector & basis, vector & nbasis, - vector & heading, + std_vector & heading, vector & x, vector & costs, lp_settings & settings, @@ -516,8 +516,8 @@ public: } - template - static void swap(vector &v, unsigned i, unsigned j) noexcept { + template + void swap(T &v, unsigned i, unsigned j) noexcept { auto t = v[i]; v[i] = v[j]; v[j] = t; diff --git a/src/math/lp/lp_core_solver_base_def.h b/src/math/lp/lp_core_solver_base_def.h index da48eb560..47724f37e 100644 --- a/src/math/lp/lp_core_solver_base_def.h +++ b/src/math/lp/lp_core_solver_base_def.h @@ -31,7 +31,7 @@ lp_core_solver_base(static_matrix & A, // vector & b, // the right side vector vector & basis, vector & nbasis, - vector & heading, + std_vector & heading, vector & x, vector & costs, lp_settings & settings, diff --git a/src/math/lp/lp_primal_core_solver.h b/src/math/lp/lp_primal_core_solver.h index d34569032..064892cab 100644 --- a/src/math/lp/lp_primal_core_solver.h +++ b/src/math/lp/lp_primal_core_solver.h @@ -640,7 +640,7 @@ namespace lp { vector &b, // the right side vector vector &x, // the number of elements in x needs to be at least as large // as the number of columns in A - vector &basis, vector &nbasis, vector &heading, + vector &basis, vector &nbasis, std_vector &heading, vector &costs, const vector &column_type_array, const vector &lower_bound_values, const vector &upper_bound_values, lp_settings &settings, const column_namer &column_names) diff --git a/src/math/lp/nla_common.cpp b/src/math/lp/nla_common.cpp index eceacbcb4..795020513 100644 --- a/src/math/lp/nla_common.cpp +++ b/src/math/lp/nla_common.cpp @@ -127,4 +127,4 @@ template void common::create_sum_from_row(const T& row, } -template void nla::common::create_sum_from_row, true, unsigned int> >(vector, true, unsigned int> const&, nla::nex_creator&, nla::nex_creator::sum_factory&, u_dependency*&); +template void nla::common::create_sum_from_row> >(std_vector> const&, nla::nex_creator&, nla::nex_creator::sum_factory&, u_dependency*&); diff --git a/src/math/lp/nla_grobner.cpp b/src/math/lp/nla_grobner.cpp index 4beb7eaff..234b56efa 100644 --- a/src/math/lp/nla_grobner.cpp +++ b/src/math/lp/nla_grobner.cpp @@ -558,7 +558,7 @@ namespace nla { add_eq(r, dep); } - void grobner::add_row(const vector> & row) { + void grobner::add_row(const std_vector> & row) { u_dependency *dep = nullptr; rational val; dd::pdd sum = m_pdd_manager.mk_val(rational(0)); diff --git a/src/math/lp/nla_grobner.h b/src/math/lp/nla_grobner.h index be5f06136..4ce0593fa 100644 --- a/src/math/lp/nla_grobner.h +++ b/src/math/lp/nla_grobner.h @@ -60,7 +60,7 @@ namespace nla { void find_nl_cluster(); void prepare_rows_and_active_vars(); void add_var_and_its_factors_to_q_and_collect_new_rows(lpvar j, svector& q); - void add_row(const vector>& row); + void add_row(const std_vector>& row); void add_fixed_monic(unsigned j); bool is_solved(dd::pdd const& p, unsigned& v, dd::pdd& r); void add_eq(dd::pdd& p, u_dependency* dep); diff --git a/src/math/lp/static_matrix.cpp b/src/math/lp/static_matrix.cpp index 83a18416c..c7593d93f 100644 --- a/src/math/lp/static_matrix.cpp +++ b/src/math/lp/static_matrix.cpp @@ -54,7 +54,6 @@ template void static_matrix >::set(unsigned int, unsigned template bool lp::static_matrix::pivot_row_to_row_given_cell(unsigned int, column_cell& , unsigned int); template bool lp::static_matrix >::pivot_row_to_row_given_cell(unsigned int, column_cell&, unsigned int); template void lp::static_matrix >::pivot_row_to_row_given_cell_with_sign(unsigned int, column_cell&, unsigned int, int); -template void lp::static_matrix >::remove_element(vector, true, unsigned int>&, lp::row_cell&); template void lp::static_matrix::pivot_row_to_row_given_cell_with_sign(unsigned int, lp::row_cell&, unsigned int, int); template void lp::static_matrix >::add_rows(mpq const&, unsigned int, unsigned int); template void lp::static_matrix::add_rows(class rational const &,unsigned int,unsigned int); diff --git a/src/math/lp/static_matrix.h b/src/math/lp/static_matrix.h index a4f4912c2..de81cc2ec 100644 --- a/src/math/lp/static_matrix.h +++ b/src/math/lp/static_matrix.h @@ -41,10 +41,10 @@ std::ostream& operator<<(std::ostream& out, const row_cell& rc) { } struct empty_struct {}; typedef row_cell column_cell; -typedef vector column_strip; +typedef std_vector column_strip; template -using row_strip = vector>; +using row_strip = std_vector>; template mpq get_denominators_lcm(const K & row) { SASSERT(row.size() > 0); mpq r = mpq(1); @@ -79,8 +79,8 @@ public: vector m_work_vector_of_row_offsets; indexed_vector m_work_vector; - vector> m_rows; - vector m_columns; + std_vector> m_rows; + std_vector m_columns; // starting inner classes class ref { static_matrix & m_matrix; @@ -153,7 +153,7 @@ public: void remove_last_column(unsigned j); - void remove_element(vector> & row, row_cell & elem_to_remove); + void remove_element(std_vector> & row, row_cell & elem_to_remove); void multiply_column(unsigned column, T const & alpha) { for (auto & t : m_columns[column]) { @@ -245,7 +245,7 @@ public: m_stack.push(d); } - void pop_row_columns(const vector> & row) { + void pop_row_columns(const std_vector> & row) { for (auto & c : row) { unsigned j = c.var(); auto & col = m_columns[j]; @@ -291,7 +291,7 @@ public: } } - T dot_product_with_column(const vector & y, unsigned j) const { + T dot_product_with_column(const std_vector & y, unsigned j) const { lp_assert(j < column_count()); T ret = numeric_traits::zero(); for (auto & it : m_columns[j]) { @@ -320,7 +320,7 @@ public: } } - void fill_last_row_with_pivoting_loop_block(unsigned j, const vector & basis_heading) { + void fill_last_row_with_pivoting_loop_block(unsigned j, const std_vector & basis_heading) { int row_index = basis_heading[j]; if (row_index < 0) return; @@ -352,7 +352,7 @@ public: template void fill_last_row_with_pivoting(const term& row, unsigned bj, // the index of the basis column - const vector & basis_heading) { + const std_vector & basis_heading) { lp_assert(row_count() > 0); m_work_vector.resize(column_count()); T a; @@ -377,7 +377,7 @@ public: set(last_row, column_count() - 1, one_of_type()); } - void copy_column_to_vector (unsigned j, vector & v) const { + void copy_column_to_vector (unsigned j, std_vector & v) const { v.resize(row_count(), numeric_traits::zero()); for (auto & it : m_columns[j]) { const T& val = get_val(it); @@ -387,7 +387,7 @@ public: } template - L dot_product_with_row(unsigned row, const vector & w) const { + L dot_product_with_row(unsigned row, const std_vector & w) const { L ret = zero_of_type(); lp_assert(row < m_rows.size()); for (auto & it : m_rows[row]) { @@ -444,11 +444,12 @@ public: }; const_iterator begin() const { - return const_iterator(m_A.m_columns[m_j].begin(), m_A); + return const_iterator(m_A.m_columns[m_j].data(), m_A); } const_iterator end() const { - return const_iterator(m_A.m_columns[m_j].end(), m_A); + const auto & column = m_A.m_columns[m_j]; + return const_iterator(column.data() + column.size(), m_A); } }; diff --git a/src/math/lp/static_matrix_def.h b/src/math/lp/static_matrix_def.h index 9791900f5..3a9604607 100644 --- a/src/math/lp/static_matrix_def.h +++ b/src/math/lp/static_matrix_def.h @@ -421,7 +421,7 @@ template bool static_matrix::is_correct() const { } template -void static_matrix::remove_element(vector> & row_vals, row_cell & row_el_iv) { +void static_matrix::remove_element(std_vector> & row_vals, row_cell & row_el_iv) { unsigned column_offset = row_el_iv.offset(); auto & column_vals = m_columns[row_el_iv.var()]; column_cell& cs = m_columns[row_el_iv.var()][column_offset];