| 332 | } |
| 333 | #endif |
| 334 | NPY_FINLINE npyv_f64 npyv_muladdsub_f64(npyv_f64 a, npyv_f64 b, npyv_f64 c) |
| 335 | { |
| 336 | const npyv_f64 msign = npyv_set_f64(-0.0, 0.0); |
| 337 | return npyv_muladd_f64(a, b, npyv_xor_f64(msign, c)); |
| 338 | } |
| 339 | /*************************** |
| 340 | * Summation |
| 341 | ***************************/ |
nothing calls this directly
no test coverage detected