mk_not method

Z3_ast mk_not(
  1. Z3_context c,
  2. Z3_ast a
)

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