mk_re_intersect method

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

\brief Create the intersection of the regular languages.

\pre n > 0

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

Implementation

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