mk_set_add method
\brief Add an element to a set.
The first argument must be a set, the second an element.
def_API('Z3_mk_set_add', AST, (_in(CONTEXT), _in(AST), _in(AST)))
Implementation
Z3_ast mk_set_add(
Z3_context c,
Z3_ast set1,
Z3_ast elem,
) {
return _mk_set_add(
c,
set1,
elem,
);
}