solver_propagate_fixed method
\brief register a callback for when an expression is bound to a fixed value. The supported expression types are
- Booleans
- Bit-vectors
def_API('Z3_solver_propagate_fixed', VOID, (_in(CONTEXT), _in(SOLVER), _fnptr(Z3_fixed_eh)))
Implementation
void solver_propagate_fixed(
Z3_context c,
Z3_solver s,
ffi.Pointer<Z3_fixed_eh> fixed_eh,
) {
return _solver_propagate_fixed(
c,
s,
fixed_eh,
);
}