mk_bvneg_no_overflow method

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

\brief Check that bit-wise negation does not overflow when \c t1 is interpreted as a signed bit-vector.

The node \c t1 must have bit-vector sort. The returned node is of sort Bool.

def_API('Z3_mk_bvneg_no_overflow', AST, (_in(CONTEXT), _in(AST)))

Implementation

Z3_ast mk_bvneg_no_overflow(
  Z3_context c,
  Z3_ast t1,
) {
  return _mk_bvneg_no_overflow(
    c,
    t1,
  );
}