| 1313 | } |
| 1314 | |
| 1315 | expr expr::fma(const expr &a, const expr &b, const expr &c, const expr &rm) { |
| 1316 | C2(a, b, c, rm); |
| 1317 | return simplify_const(Z3_mk_fpa_fma(ctx(), rm(), a(), b(), c()), a, b, c); |
| 1318 | } |
| 1319 | |
| 1320 | expr expr::ceil() const { |
| 1321 | return round(rtp()); |
nothing calls this directly
no test coverage detected