mk_re_range method

Z3_ast mk_re_range(
  1. Z3_context c,
  2. Z3_ast lo,
  3. Z3_ast hi
)

\brief Create the range regular expression over two sequences of length 1.

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

Implementation

Z3_ast mk_re_range(
  Z3_context c,
  Z3_ast lo,
  Z3_ast hi,
) {
  return _mk_re_range(
    c,
    lo,
    hi,
  );
}