model_has_interp method

bool model_has_interp(
  1. Z3_context c,
  2. Z3_model m,
  3. Z3_func_decl a
)

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