Skip to content

Commit 7b03e78

Browse files
committed
Fix eclipseformat issues with newer eclipse
1 parent d1ab78c commit 7b03e78

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/nmath/Mach.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ public static int i1mach(int i) {
8585

8686
default:
8787
throw RInternalError.shouldNotReachHere();
88-
// return 0;
8988
}
9089
}
9190
}

com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/nmath/distr/PNChisq.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ public double evaluate(double x, double df, double ncp, boolean lowerTail, boole
151151
/* LDOUBLE */double t;
152152
if (f2 * DBL_EPSILON > 0.125 && /* very large f and x ~= f: probably needs */
153153
MathWrapper.abs(t = x2 - f2) < /* another algorithm anyway */
154-
Math.sqrt(DBL_EPSILON) * f2) {
154+
Math.sqrt(DBL_EPSILON) * f2) {
155155
/* evade cancellation error */
156156
/* t = Math.exp((1 - t)*(2 - t/(f2 + 1))) / Math.sqrt(2*M_PI*(f2 + 1)); */
157157
lt = (1 - t) * (2 - t / (f2 + 1)) - M_LN_SQRT_2PI - 0.5 * Math.log(f2 + 1);

0 commit comments

Comments
 (0)