mk_bvult method

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

\brief Unsigned less than.

The nodes \c t1 and \c t2 must have the same bit-vector sort.

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

Implementation

Z3_ast mk_bvult(
  Z3_context c,
  Z3_ast t1,
  Z3_ast t2,
) {
  return _mk_bvult(
    c,
    t1,
    t2,
  );
}