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:
parent
f3b34fd835
commit
32028083fb
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue