apply_result_dec_ref method

void apply_result_dec_ref(
  1. Z3_context c,
  2. Z3_apply_result r
)

\brief Decrement the reference counter of the given \c Z3_apply_result object.

def_API('Z3_apply_result_dec_ref', VOID, (_in(CONTEXT), _in(APPLY_RESULT)))

Implementation

void apply_result_dec_ref(
  Z3_context c,
  Z3_apply_result r,
) {
  return _apply_result_dec_ref(
    c,
    r,
  );
}