mk_bvneg method

Z3_ast mk_bvneg(
  1. Z3_context c,
  2. Z3_ast t1
)

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