mk_set_complement method
\brief Take the complement of a set.
def_API('Z3_mk_set_complement', AST, (_in(CONTEXT), _in(AST)))
Implementation
Z3_ast mk_set_complement(
Z3_context c,
Z3_ast arg,
) {
return _mk_set_complement(
c,
arg,
);
}