File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -501,7 +501,6 @@ namespace lp {
501501 indexed_uint_set m_changed_columns;
502502 indexed_uint_set m_changed_terms; // represented by term columns
503503 indexed_uint_set m_terms_to_tighten; // represented by term columns
504- indexed_uint_set m_tightened_columns; // the column that got tightened by the tigthening phase,
505504 // m_column_to_terms[j] is the set of all k such lra.get_term(k) depends on j
506505 std::unordered_map<unsigned , std::unordered_set<unsigned >> m_columns_to_terms;
507506
@@ -1399,7 +1398,6 @@ namespace lp {
13991398 // Copy changed terms to another vector for sorting
14001399 std_vector<unsigned > sorted_changed_terms;
14011400 std_vector<unsigned > processed_terms;
1402- m_tightened_columns.reset ();
14031401 for (unsigned j: m_terms_to_tighten) {
14041402 if (j >= lra.column_count () ||
14051403 !lra.column_has_term (j) ||
@@ -1733,7 +1731,6 @@ namespace lp {
17331731
17341732 lp_status st = lra.find_feasible_solution ();
17351733 if ((int )st >= (int )lp::lp_status::FEASIBLE) {
1736- m_tightened_columns.insert (j);
17371734 return false ;
17381735 }
17391736 if (st == lp_status::CANCELLED) return false ;
You can’t perform that action at this time.
0 commit comments