mk_re_union method

Z3_ast mk_re_union(
  1. Z3_context c,
  2. int n,
  3. Pointer<Z3_ast> args
)

\brief Create the union of the regular languages.

\pre n > 0

def_API('Z3_mk_re_union', AST ,(_in(CONTEXT), _in(UINT), _in_array(1, AST)))

Implementation

Z3_ast mk_re_union(
  Z3_context c,
  int n,
  ffi.Pointer<Z3_ast> args,
) {
  return _mk_re_union(
    c,
    n,
    args,
  );
}