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

missing initialization of m_user_propagator, disable unsound in-processing in pb_solver

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-02-23 04:49:33 -08:00
parent dc110f10a4
commit 7b4f1ed530
2 changed files with 8 additions and 2 deletions

View file

@ -211,6 +211,7 @@ namespace smt {
new_ctx->m_is_auxiliary = true;
new_ctx->set_logic(l == nullptr ? m_setup.get_logic() : *l);
copy_plugins(*this, *new_ctx);
new_ctx->copy_user_propagator(*this);
return new_ctx;
}