model_dec_ref method
\brief Decrement the reference counter of the given model.
def_API('Z3_model_dec_ref', VOID, (_in(CONTEXT), _in(MODEL)))
Implementation
void model_dec_ref(
Z3_context c,
Z3_model m,
) {
return _model_dec_ref(
c,
m,
);
}