fixedpoint_set_params method

void fixedpoint_set_params(
  1. Z3_context c,
  2. Z3_fixedpoint f,
  3. Z3_params p
)

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