3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-08-26 18:55:53 -07:00
parent d6848175eb
commit 828fc72754
3 changed files with 11 additions and 5 deletions

View file

@ -3882,7 +3882,7 @@ namespace z3 {
public:
user_propagator_base(context* c) : s(nullptr), c(c) {}
user_propagator_base(Z3_context c) : s(nullptr), c(c) {}
user_propagator_base(solver* s): s(s), c(nullptr) {
Z3_solver_propagate_init(ctx(), *s, this, push_eh, pop_eh, fresh_eh);