mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 09:34:08 +00:00
build
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
16dc2788a7
commit
ce1f2e10c5
|
@ -1777,7 +1777,7 @@ namespace z3 {
|
|||
check_context(a, b); Z3_ast r = Z3_mk_bvsdiv_no_overflow(a.ctx(), a, b); a.check_error(); return expr(a.ctx(), r);
|
||||
}
|
||||
inline expr bvneg_no_overflow(expr const& a) {
|
||||
Z3_ast r = Z3_mk_bvneg_no_overflow(a.ctx(), a, b); a.check_error(); return expr(a.ctx(), r);
|
||||
Z3_ast r = Z3_mk_bvneg_no_overflow(a.ctx(), a); a.check_error(); return expr(a.ctx(), r);
|
||||
}
|
||||
inline expr bvmul_no_overflow(expr const& a, expr const& b, bool is_signed) {
|
||||
check_context(a, b); Z3_ast r = Z3_mk_bvmul_no_overflow(a.ctx(), a, b, is_signed); a.check_error(); return expr(a.ctx(), r);
|
||||
|
|
Loading…
Reference in a new issue