3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-12 11:54:07 +00:00

fix crash

This commit is contained in:
Nuno Lopes 2026-02-10 10:33:36 +00:00
parent 915ad35012
commit bcca975d2d

View file

@ -60,7 +60,6 @@ namespace smt {
else {
justify(lit, s);
}
m_antecedents.insert(lit.var(), std::move(s));
bool found = false;
if (m_var2val.contains(e)) {
found = true;
@ -94,6 +93,7 @@ namespace smt {
fml = m.mk_implies(antecedent2fml(s), fml);
conseq.push_back(fml);
}
m_antecedents.insert(lit.var(), std::move(s));
}
void context::justify(literal lit, index_set& s) {