is_eq_ast method

bool is_eq_ast(
  1. Z3_context c,
  2. Z3_ast t1,
  3. Z3_ast t2
)

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