mk_ge method

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

\brief Create greater than or equal to.

The nodes \c t1 and \c t2 must have the same sort, and must be int or real.

def_API('Z3_mk_ge', AST, (_in(CONTEXT), _in(AST), _in(AST)))

Implementation

Z3_ast mk_ge(
  Z3_context c,
  Z3_ast t1,
  Z3_ast t2,
) {
  return _mk_ge(
    c,
    t1,
    t2,
  );
}