model_inc_ref method
\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,
);
}