is_eq_func_decl method
\brief Compare terms.
def_API('Z3_is_eq_func_decl', BOOL, (_in(CONTEXT), _in(FUNC_DECL), _in(FUNC_DECL)))
Implementation
bool is_eq_func_decl(
Z3_context c,
Z3_func_decl f1,
Z3_func_decl f2,
) {
return _is_eq_func_decl(
c,
f1,
f2,
);
}