is_eq_ast method
\brief Compare terms.
def_API('Z3_is_eq_ast', BOOL, (_in(CONTEXT), _in(AST), _in(AST)))
Implementation
bool is_eq_ast(
Z3_context c,
Z3_ast t1,
Z3_ast t2,
) {
return _is_eq_ast(
c,
t1,
t2,
);
}
\brief Compare terms.
def_API('Z3_is_eq_ast', BOOL, (_in(CONTEXT), _in(AST), _in(AST)))
bool is_eq_ast(
Z3_context c,
Z3_ast t1,
Z3_ast t2,
) {
return _is_eq_ast(
c,
t1,
t2,
);
}