mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55:51 +00:00
fixes for #3376
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
51ffaae396
commit
4c5c17c7d8
3 changed files with 5 additions and 2 deletions
|
@ -1246,7 +1246,9 @@ bool core::conflict_found() const {
|
|||
}
|
||||
|
||||
bool core::done() const {
|
||||
return m_lemma_vec->size() >= 10 || conflict_found();
|
||||
return m_lemma_vec->size() >= 10 ||
|
||||
conflict_found() ||
|
||||
lp_settings().get_cancel_flag();
|
||||
}
|
||||
|
||||
lbool core::incremental_linearization(bool constraint_derived) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue