mk_set_difference method

Z3_ast mk_set_difference(
  1. Z3_context c,
  2. Z3_ast arg1,
  3. Z3_ast arg2
)

\brief Take the set difference between two sets.

def_API('Z3_mk_set_difference', AST, (_in(CONTEXT), _in(AST), _in(AST)))

Implementation

Z3_ast mk_set_difference(
  Z3_context c,
  Z3_ast arg1,
  Z3_ast arg2,
) {
  return _mk_set_difference(
    c,
    arg1,
    arg2,
  );
}