fixedpoint_dec_ref method

void fixedpoint_dec_ref(
  1. Z3_context c,
  2. Z3_fixedpoint d
)

\brief Decrement the reference counter of the given fixedpoint context.

def_API('Z3_fixedpoint_dec_ref', VOID, (_in(CONTEXT), _in(FIXEDPOINT)))

Implementation

void fixedpoint_dec_ref(
  Z3_context c,
  Z3_fixedpoint d,
) {
  return _fixedpoint_dec_ref(
    c,
    d,
  );
}