From 9c6557732bcdb6f473e7e4dde49042c5b708cec2 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Fri, 5 Aug 2011 19:12:37 +0000 Subject: [PATCH] fixed typos, it's IEEE754, not IEEE753 ... git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1154356 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/math/util/MathUtils.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/math/util/MathUtils.java b/src/main/java/org/apache/commons/math/util/MathUtils.java index 980a9a9f1..5f0f5bfdc 100644 --- a/src/main/java/org/apache/commons/math/util/MathUtils.java +++ b/src/main/java/org/apache/commons/math/util/MathUtils.java @@ -2362,7 +2362,7 @@ public final class MathUtils { // the code below is split in many additions/subtractions that may // appear redundant. However, they shoud NOT be simplified, as they - // do use IEEE753 floating point arithmetic rouding properties. + // do use IEEE754 floating point arithmetic rouding properties. // as an example, the expression "ca1 - (ca1 - a1)" is NOT the same as "a1" // The variables naming conventions are that xyzHigh contains the most significant // bits of xyz and xyzLow contains its least significant bits. So theoretically @@ -2435,7 +2435,7 @@ public final class MathUtils { // the code below is split in many additions/subtractions that may // appear redundant. However, they shoud NOT be simplified, as they - // do use IEEE753 floating point arithmetic rouding properties. + // do use IEEE754 floating point arithmetic rouding properties. // as an example, the expression "ca1 - (ca1 - a1)" is NOT the same as "a1" // The variables naming conventions are that xyzHigh contains the most significant // bits of xyz and xyzLow contains its least significant bits. So theoretically @@ -2530,7 +2530,7 @@ public final class MathUtils { // the code below is split in many additions/subtractions that may // appear redundant. However, they shoud NOT be simplified, as they - // do use IEEE753 floating point arithmetic rouding properties. + // do use IEEE754 floating point arithmetic rouding properties. // as an example, the expression "ca1 - (ca1 - a1)" is NOT the same as "a1" // The variables naming conventions are that xyzHigh contains the most significant // bits of xyz and xyzLow contains its least significant bits. So theoretically