mk_bvneg method
\brief Standard two's complement unary minus.
The node \c t1 must have bit-vector sort.
def_API('Z3_mk_bvneg', AST, (_in(CONTEXT), _in(AST)))
Implementation
Z3_ast mk_bvneg(
Z3_context c,
Z3_ast t1,
) {
return _mk_bvneg(
c,
t1,
);
}