mk_char_le method

Z3_ast mk_char_le(
  1. Z3_context c,
  2. Z3_ast ch1,
  3. Z3_ast ch2
)

\brief Create less than or equal to between two characters.

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

Implementation

Z3_ast mk_char_le(
  Z3_context c,
  Z3_ast ch1,
  Z3_ast ch2,
) {
  return _mk_char_le(
    c,
    ch1,
    ch2,
  );
}