exp2l: Work around a NetBSD 10.0/i386 bug.
[gnulib.git] / lib / hypot.c
blob828a2a2cd369820deaeec2ff2132af0fd25cda60
1 /* Hypotenuse of a right-angled triangle.
2 Copyright (C) 2012-2024 Free Software Foundation, Inc.
4 This file is free software: you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation, either version 3 of the
7 License, or (at your option) any later version.
9 This file is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2012. */
19 #include <config.h>
21 /* Specification. */
22 #include <math.h>
24 double
25 hypot (double x, double y)
27 if (isfinite (x) && isfinite (y))
29 /* Determine absolute values. */
30 x = fabs (x);
31 y = fabs (y);
34 /* Find the bigger and the smaller one. */
35 double a;
36 double b;
38 if (x >= y)
40 a = x;
41 b = y;
43 else
45 a = y;
46 b = x;
48 /* Now 0 <= b <= a. */
51 int e;
52 double an;
53 double bn;
55 /* Write a = an * 2^e, b = bn * 2^e with 0 <= bn <= an < 1. */
56 an = frexp (a, &e);
57 bn = ldexp (b, - e);
60 double cn;
62 /* Through the normalization, no unneeded overflow or underflow
63 will occur here. */
64 cn = sqrt (an * an + bn * bn);
65 return ldexp (cn, e);
70 else
72 if (isinf (x) || isinf (y))
73 /* x or y is infinite. Return +Infinity. */
74 return HUGE_VAL;
75 else
76 /* x or y is NaN. Return NaN. */
77 return x + y;