This is an automated email from the ASF dual-hosted git repository. erans pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-math.git
commit ab25a02c8f054547ee5616e203f516db9811686d Author: Gilles Sadowski <gillese...@gmail.com> AuthorDate: Mon May 12 17:23:54 2025 +0200 Minor change: Remove spurious line. --- .../org/apache/commons/math4/legacy/optim/linear/SimplexSolverTest.java | 1 - 1 file changed, 1 deletion(-) diff --git a/commons-math-legacy/src/test/java/org/apache/commons/math4/legacy/optim/linear/SimplexSolverTest.java b/commons-math-legacy/src/test/java/org/apache/commons/math4/legacy/optim/linear/SimplexSolverTest.java index cfa3753ad..9d0602222 100644 --- a/commons-math-legacy/src/test/java/org/apache/commons/math4/legacy/optim/linear/SimplexSolverTest.java +++ b/commons-math-legacy/src/test/java/org/apache/commons/math4/legacy/optim/linear/SimplexSolverTest.java @@ -1047,7 +1047,6 @@ public class SimplexSolverTest { final PointValuePair resultOriginal = solve(c, constraints); final double z1 = resultOriginal.getValue(); - System.out.println("z1=" + z1); // XXX REMOVE final List<LinearConstraint> shiftedConstraints = new ArrayList<>(); for (LinearConstraint cons : constraints) {