mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
delay dereferencing justification
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
dfeb4b5235
commit
87ae679db6
|
@ -2761,7 +2761,7 @@ namespace sat {
|
|||
while (!m_lemma_min_stack.empty()) {
|
||||
bool_var var = m_lemma_min_stack.back();
|
||||
m_lemma_min_stack.pop_back();
|
||||
justification js = m_justification[var];
|
||||
justification const& js = m_justification[var];
|
||||
switch(js.get_kind()) {
|
||||
case justification::NONE:
|
||||
// it is a decision variable from a previous scope level
|
||||
|
|
Loading…
Reference in a new issue