We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14c672f commit 87810c6Copy full SHA for 87810c6
src/math/lp/dioph_eq.cpp
@@ -496,7 +496,7 @@ namespace lp {
496
497
unsigned m_conflict_index = UINT_MAX; // the row index of the conflict
498
void reset_conflict() { m_conflict_index = UINT_MAX; }
499
- bool has_conflict() const { return m_conflict_index == UINT_MAX; }
+ bool has_conflict() const { return m_conflict_index != UINT_MAX; }
500
void set_rewrite_conflict(unsigned idx) { SASSERT(idx != UINT_MAX); m_conflict_index = idx; lra.stats().m_dio_rewrite_conflicts++; }
501
unsigned m_max_of_branching_iterations = 0;
502
unsigned m_number_of_branching_calls;
0 commit comments