We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f501aea commit ecfbdbbCopy full SHA for ecfbdbb
src/math/lp/dioph_eq.cpp
@@ -1028,8 +1028,8 @@ namespace lp {
1028
1029
eliminate_substituted_in_changed_rows();
1030
m_changed_columns.reset();
1031
- SASSERT(m_changed_columns.size() == 0);
1032
m_changed_rows.reset();
+ // do not clean up m_changed_terms as they are used in tighten_terms_with_S()
1033
SASSERT(entries_are_ok());
1034
}
1035
@@ -1372,7 +1372,7 @@ namespace lp {
1372
if (j >= lra.column_count() ||
1373
!lra.column_has_term(j) ||
1374
lra.column_is_free(j) ||
1375
- is_fixed(j) || !lia.column_is_int(j)) {
+ !lia.column_is_int(j)) {
1376
cleanup.push_back(j);
1377
continue;
1378
0 commit comments