3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-25 04:26:00 +00:00

add placeholder for simplification

This commit is contained in:
Nikolaj Bjorner 2021-12-12 14:52:09 -08:00
parent d80b375ac3
commit 30a2c32c3b
7 changed files with 96 additions and 20 deletions

View file

@ -1078,7 +1078,7 @@ namespace polysat {
std::cout << "SKIP: " << mk_pp(fm, m) << "\n";
}
}
for (auto [k,v] : expr2pdd)
for (auto const& [k,v] : expr2pdd)
dealloc(v);
}
}
@ -1193,7 +1193,7 @@ void tst_polysat_argv(char** argv, int argc, int& i) {
ast_manager& m = ctx.m();
ctx.set_ignore_check(true);
VERIFY(parse_smt2_commands(ctx, is));
auto fmls = ctx.assertions();
ptr_vector<expr> fmls = ctx.assertions();
polysat::scoped_solver s("polysat");
g_solver = &s;
polysat::internalize(m, s, fmls);