3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00
This commit is contained in:
Nikolaj Bjorner 2021-11-24 13:24:31 +01:00
parent e8f5a29c31
commit 833dd62623
2 changed files with 10 additions and 10 deletions

View file

@ -1911,7 +1911,7 @@ namespace z3 {
}
inline expr bvredand(expr const & a) {
assert(a.is_bv());
Z3_ast r = Z3_mk_bvredor(a.ctx(), a);
Z3_ast r = Z3_mk_bvredand(a.ctx(), a);
a.check_error();
return expr(a.ctx(), r);
}