model_inc_ref method

void model_inc_ref(
  1. Z3_context c,
  2. Z3_model m
)

\brief Increment the reference counter of the given model.

def_API('Z3_model_inc_ref', VOID, (_in(CONTEXT), _in(MODEL)))

Implementation

void model_inc_ref(
  Z3_context c,
  Z3_model m,
) {
  return _model_inc_ref(
    c,
    m,
  );
}