mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
fix #5681
This commit is contained in:
parent
e8f5a29c31
commit
833dd62623
2 changed files with 10 additions and 10 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue