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