mk_bvnot method

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

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