mirror of
https://github.com/vale981/arb
synced 2025-03-04 17:01:40 -05:00
fix #278: _hypot name clash
This commit is contained in:
parent
b6d4e416c4
commit
9d5c3e6574
1 changed files with 3 additions and 3 deletions
|
@ -340,16 +340,16 @@ stieltjes_mag(double n)
|
|||
return t;
|
||||
}
|
||||
|
||||
static double _hypot(double x, double y) { return sqrt(x * x + y * y); }
|
||||
static double __hypot(double x, double y) { return sqrt(x * x + y * y); }
|
||||
|
||||
/* log2 magnitude of integrand at z = x+yi; alpha = a+bi */
|
||||
static double
|
||||
integrand_mag(double n, double x, double y, double a, double b)
|
||||
{
|
||||
double t, u;
|
||||
t = log(_hypot(a - y, b + x));
|
||||
t = log(__hypot(a - y, b + x));
|
||||
u = atan2(b + x, a - y);
|
||||
t = log(_hypot(t,u)) * (n+1) - 2.0 * 3.1415926535897932 * x;
|
||||
t = log(__hypot(t,u)) * (n+1) - 2.0 * 3.1415926535897932 * x;
|
||||
return t * 1.44269504088896341;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue