changes for reading input files
[IRC.git] / Robust / src / ClassLibrary / Math.java
index ed806fbd6e7d6f1ee2cf09426b18e2d8e0f37e5c..9a7f14183f783cb6af7cc485141c49c0d342aed0 100644 (file)
@@ -38,7 +38,7 @@ public class Math {
   public static long max(long a, long b) {
     return (a>b)?a:b;
   }
-  
+
   public static double min(double a, double b) {
     return (a<b)?a:b;
   }
@@ -73,9 +73,9 @@ public class Math {
     double d = y - x;
     if( d == 0.5 ) {
       if( ((int)y)%2 == 0 ) {
-       return y;
+        return y;
       } else {
-       return y - 1.0;
+        return y - 1.0;
       }
     } else if( d < 0.5 ) {
       return y;