optimize_inc_ref method

void optimize_inc_ref(
  1. Z3_context c,
  2. Z3_optimize d
)

\brief Increment the reference counter of the given optimize context

def_API('Z3_optimize_inc_ref', VOID, (_in(CONTEXT), _in(OPTIMIZE)))

Implementation

void optimize_inc_ref(
  Z3_context c,
  Z3_optimize d,
) {
  return _optimize_inc_ref(
    c,
    d,
  );
}