fixedpoint_get_help method

Z3_string fixedpoint_get_help(
  1. Z3_context c,
  2. Z3_fixedpoint f
)

\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,
  );
}