3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 20:18:18 +00:00

Update z3++.h

This commit is contained in:
Nikolaj Bjorner 2021-09-29 12:19:02 -07:00
parent 62fd22f555
commit ff723f15ff

View file

@ -3948,13 +3948,13 @@ namespace z3 {
that were created using a solver. that were created using a solver.
*/ */
void fixed(fixed_eh_t& f) { void register_fixed(fixed_eh_t& f) {
assert(s); assert(s);
m_fixed_eh = f; m_fixed_eh = f;
Z3_solver_propagate_fixed(ctx(), *s, fixed_eh); Z3_solver_propagate_fixed(ctx(), *s, fixed_eh);
} }
void eq(eq_eh_t& f) { void register_eq(eq_eh_t& f) {
assert(s); assert(s);
m_eq_eh = f; m_eq_eh = f;
Z3_solver_propagate_eq(ctx(), *s, eq_eh); Z3_solver_propagate_eq(ctx(), *s, eq_eh);