3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-27 13:39:49 +00:00

fixing clang compilation problems

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-12-05 15:20:16 -08:00
parent 3736c5ea3b
commit 5e4d1151eb
6 changed files with 7 additions and 4 deletions

View file

@ -629,7 +629,7 @@ namespace qe {
expr_ref fml(_fml, m);
if (m_strong_context_simplify_param && m_ctx_simplify_local_param) {
m_ctx_rewriter.push();
m_ctx_rewriter.assert(M(idx));
m_ctx_rewriter.assert_expr(M(idx));
m_ctx_rewriter(fml);
m_ctx_rewriter.pop();
TRACE("qe", tout << mk_pp(_fml, m) << "\n-- context simplify -->\n" << mk_pp(fml, m) << "\n";);
@ -650,7 +650,7 @@ namespace qe {
m_rewriter(not_fml);
if (m_strong_context_simplify_param && !m_ctx_simplify_local_param) {
m_ctx_rewriter.push();
m_ctx_rewriter.assert(M(idx));
m_ctx_rewriter.assert_expr(M(idx));
m_ctx_rewriter(not_fml);
m_ctx_rewriter.pop();
}