We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b3d8ce commit 21f67efCopy full SHA for 21f67ef
src/math/lp/dioph_eq.cpp
@@ -926,6 +926,7 @@ namespace lp {
926
}
927
find_changed_terms_and_more_changed_rows();
928
for (unsigned j : m_changed_terms) {
929
+ if (j >= m_l_matrix.column_count()) continue;
930
for (const auto & cs: m_l_matrix.column(j)) {
931
m_changed_rows.insert(cs.var());
932
@@ -1328,6 +1329,7 @@ namespace lp {
1328
1329
lia_move ret = lia_move::undef;
1330
1331
cleanup.push_back(j);
1332
+ if (j >= lra.column_count()) continue;
1333
if (!lra.column_has_term(j) || lra.column_is_free(j) ||
1334
is_fixed(j) || !lia.column_is_int(j)) {
1335
continue;
0 commit comments