You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2021/08/12 01:03:59 UTC

[commons-math] branch master updated: Javadoc.

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


The following commit(s) were added to refs/heads/master by this push:
     new 872b655  Javadoc.
872b655 is described below

commit 872b6559509957c5738ddcf14cf6307dbfd64c41
Author: Gilles Sadowski <gi...@gmail.com>
AuthorDate: Thu Aug 12 03:03:42 2021 +0200

    Javadoc.
---
 .../legacy/optim/nonlinear/scalar/noderiv/SimplexOptimizer.java     | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/optim/nonlinear/scalar/noderiv/SimplexOptimizer.java b/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/optim/nonlinear/scalar/noderiv/SimplexOptimizer.java
index 397c84c..fcbd746 100644
--- a/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/optim/nonlinear/scalar/noderiv/SimplexOptimizer.java
+++ b/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/optim/nonlinear/scalar/noderiv/SimplexOptimizer.java
@@ -86,10 +86,8 @@ import org.apache.commons.math4.legacy.optim.nonlinear.scalar.ObjectiveFunction;
  * have converged.
  * <p>
  * Whenever {@link SimulatedAnnealing simulated annealing (SA)} is activated,
- * the SA phase will terminate when the temperature reaches \( 10^{-2} \).
- * Indeed the chance of accepting the alternative state is vanishingly small.
- * It does not mean however that the optimization has converged.
- * In such a case, the {@link PopulationSize} argument to method
+ * and the SA phase has completed, convergence has probably not been reached
+ * yet: In such cases, the {@link PopulationSize} argument to method
  * {@link #optimize(OptimizationData[]) optimize} will trigger an additional
  * "best list" search.
  *