summaryrefslogtreecommitdiff
path: root/BUGS
blob: 68bcd238e11d717b3d578c3dd6bfb8d8ac09e9e6 (plain)
1
2
3
4
5
- No checks are made for intermediate overflows, which may occur
  in the middle of the algorithms although the final result
  may be representable.
  More precisely for cos(x+i*y) = cos(x)*cosh(y) - sin(x)*sinh(y)*I,
  if an overflow occurs in cosh(y), we assume cos(x)*cosh(y) overflows too.