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