mk_not method
\brief Create an AST node representing \ccode{not(a)}.
The node \c a must have Boolean sort.
def_API('Z3_mk_not', AST, (_in(CONTEXT), _in(AST)))
Implementation
Z3_ast mk_not(
Z3_context c,
Z3_ast a,
) {
return _mk_not(
c,
a,
);
}