You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/org/optimizationBenchmarking/utils/math/matrix/processing/iterator2D/EIterationDirection.java
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -320,11 +320,9 @@ final boolean _setNextXCoordinateDouble(
320
320
for (position = impl.m_indexes[index]; position < max; position++) {
321
321
current = matrix.getDouble(position, impl.m_xDimension);
322
322
if (Double.isNaN(current)) {
323
-
if (Double.isNaN(current)) {
324
-
thrownewIllegalStateException(//
325
-
"Encountered unexpected NaN on x axis during matrix iteration in matrix "//$NON-NLS-1$
326
-
+ index + " in row " + position + '.'); //$NON-NLS-1$
327
-
}
323
+
thrownewIllegalStateException(//
324
+
"Encountered unexpected NaN on x axis during matrix iteration in matrix "//$NON-NLS-1$
325
+
+ index + " in row " + position + '.'); //$NON-NLS-1$
Copy file name to clipboardExpand all lines: src/main/java/org/optimizationBenchmarking/utils/math/matrix/processing/iterator2D/MatrixIteration2DState.java
0 commit comments