3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

mising files

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-08-26 02:04:59 -07:00
parent e3e965883f
commit ce3ab6b170
2 changed files with 8 additions and 7 deletions

View file

@ -467,7 +467,8 @@ unsigned asserted_formulas_new::propagate_values(unsigned i) {
proof * pr = m_formulas[i].get_proof();
new_pr = m.mk_modus_ponens(pr, new_pr);
}
m_formulas[i] = justified_expr(m, new_n, new_pr);
justified_expr j(m, new_n, new_pr);
m_formulas[i] = j;
update_substitution(new_n, new_pr);
return n != new_n ? 1 : 0;
}