mk_re_full method

Z3_ast mk_re_full(
  1. Z3_context c,
  2. Z3_sort re
)

\brief Create an universal regular expression of sort \c re.

\pre re is a regular expression sort.

def_API('Z3_mk_re_full', AST ,(_in(CONTEXT), _in(SORT)))

Implementation

Z3_ast mk_re_full(
  Z3_context c,
  Z3_sort re,
) {
  return _mk_re_full(
    c,
    re,
  );
}