mirror of
https://github.com/Z3Prover/z3
synced 2025-05-12 02:04:43 +00:00
fixes
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
2ede4b2c80
commit
d940516df3
10 changed files with 15 additions and 62 deletions
|
@ -385,7 +385,6 @@ namespace smt {
|
|||
{
|
||||
ast_manager & m = get_manager();
|
||||
context & ctx = get_context();
|
||||
th_rewriter & simp = ctx.get_rewriter();
|
||||
|
||||
expr_ref res(m), t(m);
|
||||
proof_ref t_pr(m);
|
||||
|
@ -394,7 +393,7 @@ namespace smt {
|
|||
expr_ref_vector::iterator it = m_converter.m_extra_assertions.begin();
|
||||
expr_ref_vector::iterator end = m_converter.m_extra_assertions.end();
|
||||
for (; it != end; it++) {
|
||||
simp(*it, t, t_pr);
|
||||
ctx.get_rewriter()(*it, t, t_pr);
|
||||
res = m.mk_and(res, t);
|
||||
}
|
||||
m_converter.m_extra_assertions.reset();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue