params_inc_ref method

void params_inc_ref(
  1. Z3_context c,
  2. Z3_params p
)

\brief Increment the reference counter of the given parameter set.

def_API('Z3_params_inc_ref', VOID, (_in(CONTEXT), _in(PARAMS)))

Implementation

void params_inc_ref(
  Z3_context c,
  Z3_params p,
) {
  return _params_inc_ref(
    c,
    p,
  );
}