mk_re_complement method

Z3_ast mk_re_complement(
  1. Z3_context c,
  2. Z3_ast re
)

\brief Create the complement of the regular language \c re.

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

Implementation

Z3_ast mk_re_complement(
  Z3_context c,
  Z3_ast re,
) {
  return _mk_re_complement(
    c,
    re,
  );
}