mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 21:08:46 +00:00
don't reach max conflicts if state is inconsistent
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5328454c77
commit
3298486136
|
@ -3997,7 +3997,7 @@ namespace sat {
|
|||
m_reason_unknown = "sat.max.conflicts";
|
||||
IF_VERBOSE(SAT_VB_LVL, verbose_stream() << "(sat \"abort: max-conflicts = " << m_conflicts_since_init << "\")\n";);
|
||||
}
|
||||
return true;
|
||||
return !inconsistent();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue