mirror of
https://github.com/Z3Prover/z3
synced 2026-07-22 15:05:51 +00:00
disable instantiation for inconsistent states
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
9945e3dc9a
commit
09ffec52e8
1 changed files with 3 additions and 0 deletions
|
|
@ -197,6 +197,9 @@ namespace smt {
|
|||
}
|
||||
|
||||
void qi_queue::instantiate(entry & ent) {
|
||||
if (m_context.inconsistent())
|
||||
return;
|
||||
|
||||
// set temporary flag to enable quantifier-specific tracing in within smt_internalizer.
|
||||
flet<bool> _coming_from_quant(m_context.m_coming_from_quant, true);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue