func_interp_inc_ref method

void func_interp_inc_ref(
  1. Z3_context c,
  2. Z3_func_interp f
)

\brief Increment the reference counter of the given Z3_func_interp object.

def_API('Z3_func_interp_inc_ref', VOID, (_in(CONTEXT), _in(FUNC_INTERP)))

Implementation

void func_interp_inc_ref(
  Z3_context c,
  Z3_func_interp f,
) {
  return _func_interp_inc_ref(
    c,
    f,
  );
}