mk_bvredand method

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

\brief Take conjunction of bits in vector, return vector of length 1.

The node \c t1 must have a bit-vector sort.

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

Implementation

Z3_ast mk_bvredand(
  Z3_context c,
  Z3_ast t1,
) {
  return _mk_bvredand(
    c,
    t1,
  );
}