mirror of
https://github.com/Z3Prover/z3
synced 2026-02-12 11:54:07 +00:00
fix crash
This commit is contained in:
parent
915ad35012
commit
bcca975d2d
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue