mk_bvnot method
@name Bit-vectors / /**@{/ /** \brief Bitwise negation.
The node \c t1 must have a bit-vector sort.
def_API('Z3_mk_bvnot', AST, (_in(CONTEXT), _in(AST)))
Implementation
Z3_ast mk_bvnot(
Z3_context c,
Z3_ast t1,
) {
return _mk_bvnot(
c,
t1,
);
}