OCaml 4.14.0 rebuild
[arch-packages.git] / libofa / repos / extra-x86_64 / libofa-gcc4.patch
blobd1059bafa55f1b09793709c41fdd9d0ecd75e0f6
1 --- lib/JAMA/tnt_math_utils.h.orig 2006-06-17 01:46:22.000000000 +0300
2 +++ lib/JAMA/tnt_math_utils.h 2006-06-17 01:47:02.000000000 +0300
3 @@ -20,11 +20,20 @@
4 namespace TNT
6 /**
7 + @returns the absolute value of a real (no-complex) scalar.
8 +*/
9 +template <class Real>
10 +Real abs(const Real &a)
12 + return (a > 0 ? a : -a);
14 +/**
15 @returns hypotenuse of real (non-complex) scalars a and b by
16 avoiding underflow/overflow
17 using (a * sqrt( 1 + (b/a) * (b/a))), rather than
18 sqrt(a*a + b*b).
21 template <class Real>
22 Real hypot(const Real &a, const Real &b)
24 @@ -56,15 +65,6 @@
28 -/**
29 - @returns the absolute value of a real (no-complex) scalar.
30 -*/
31 -template <class Real>
32 -Real abs(const Real &a)
34 - return (a > 0 ? a : -a);
38 #endif
39 /* MATH_UTILS_H */