3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-04 16:44:07 +00:00

fix bug introduced while absstracting m_conflict_index

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-03-16 10:42:41 -07:00 committed by Lev Nachmanson
parent f3b34fd835
commit 32028083fb

View file

@ -496,7 +496,7 @@ namespace lp {
unsigned m_conflict_index = UINT_MAX; // the row index of the conflict
void reset_conflict() { m_conflict_index = UINT_MAX; }
bool has_conflict() const { return m_conflict_index == UINT_MAX; }
bool has_conflict() const { return m_conflict_index != UINT_MAX; }
void set_rewrite_conflict(unsigned idx) { SASSERT(idx != UINT_MAX); m_conflict_index = idx; lra.stats().m_dio_rewrite_conflicts++; }
unsigned m_max_of_branching_iterations = 0;
unsigned m_number_of_branching_calls;