3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-18 02:16:40 +00:00

Bugfix for mpf roundToIntegral.

Partially fixes #69
This commit is contained in:
Christoph M. Wintersteiger 2015-05-05 23:53:33 +01:00
parent 57af3a4c6e
commit 73eb7cbf5c
4 changed files with 87 additions and 15 deletions

View file

@ -57,7 +57,7 @@ public:
br_status mk_max(expr * arg1, expr * arg2, expr_ref & result);
br_status mk_fma(expr * arg1, expr * arg2, expr * arg3, expr * arg4, expr_ref & result);
br_status mk_sqrt(expr * arg1, expr * arg2, expr_ref & result);
br_status mk_round(expr * arg1, expr * arg2, expr_ref & result);
br_status mk_round_to_integral(expr * arg1, expr * arg2, expr_ref & result);
br_status mk_float_eq(expr * arg1, expr * arg2, expr_ref & result);
br_status mk_lt(expr * arg1, expr * arg2, expr_ref & result);
br_status mk_gt(expr * arg1, expr * arg2, expr_ref & result);