fixedpoint_get_help method
\brief Return a string describing all fixedpoint available parameters.
\sa Z3_fixedpoint_get_param_descrs \sa Z3_fixedpoint_set_params
def_API('Z3_fixedpoint_get_help', STRING, (_in(CONTEXT), _in(FIXEDPOINT)))
Implementation
Z3_string fixedpoint_get_help(
Z3_context c,
Z3_fixedpoint f,
) {
return _fixedpoint_get_help(
c,
f,
);
}