mk_set_complement method

Z3_ast mk_set_complement(
  1. Z3_context c,
  2. Z3_ast arg
)

\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,
  );
}