Increase code locality.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1517542 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2013-08-26 14:24:18 +00:00
parent 9c82c679f8
commit 5b60da6526

View File

@ -2549,10 +2549,10 @@ public class FastMath {
za = temp;
double result = za + zb;
double resultb = -(result - za - zb);
if (leftPlane) {
// Result is in the left plane
final double resultb = -(result - za - zb);
final double pia = 1.5707963267948966 * 2;
final double pib = 6.123233995736766E-17 * 2;