mk_set_union method
\brief Take the union of a list of sets.
def_API('Z3_mk_set_union', AST, (_in(CONTEXT), _in(UINT), _in_array(1, AST)))
Implementation
Z3_ast mk_set_union(
Z3_context c,
int num_args,
ffi.Pointer<Z3_ast> args,
) {
return _mk_set_union(
c,
num_args,
args,
);
}