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