model_has_interp method
\brief Test if there exists an interpretation (i.e., assignment) for \c a in the model \c m.
def_API('Z3_model_has_interp', BOOL, (_in(CONTEXT), _in(MODEL), _in(FUNC_DECL)))
Implementation
bool model_has_interp(
Z3_context c,
Z3_model m,
Z3_func_decl a,
) {
return _model_has_interp(
c,
m,
a,
);
}