fixedpoint_set_params method
\brief Set parameters on fixedpoint context.
\sa Z3_fixedpoint_get_help \sa Z3_fixedpoint_get_param_descrs
def_API('Z3_fixedpoint_set_params', VOID, (_in(CONTEXT), _in(FIXEDPOINT), _in(PARAMS)))
Implementation
void fixedpoint_set_params(
Z3_context c,
Z3_fixedpoint f,
Z3_params p,
) {
return _fixedpoint_set_params(
c,
f,
p,
);
}