Skip to content

Commit

Permalink
Update z3++.h
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Sep 29, 2021
1 parent 62fd22f commit ff723f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api/c++/z3++.h
Original file line number Diff line number Diff line change
Expand Up @@ -3927,7 +3927,7 @@ namespace z3 {

user_propagator_base(solver* s): s(s), c(nullptr) {
Z3_solver_propagate_init(ctx(), *s, this, push_eh, pop_eh, fresh_eh);
}
}

virtual void push() = 0;
virtual void pop(unsigned num_scopes) = 0;
Expand All @@ -3948,13 +3948,13 @@ namespace z3 {
that were created using a solver.
*/

void fixed(fixed_eh_t& f) {
void register_fixed(fixed_eh_t& f) {
assert(s);
m_fixed_eh = f;
Z3_solver_propagate_fixed(ctx(), *s, fixed_eh);
}

void eq(eq_eh_t& f) {
void register_eq(eq_eh_t& f) {
assert(s);
m_eq_eh = f;
Z3_solver_propagate_eq(ctx(), *s, eq_eh);
Expand Down

0 comments on commit ff723f1

Please sign in to comment.