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 2022/02/06 23:39:52 UTC

[commons-math] 02/07: Changes from 'feature__MATH-1563__genetic_algorithm' of apache repo.

This is an automated email from the ASF dual-hosted git repository.

erans pushed a commit to branch feature__MATH-1563__genetic_algorithm
in repository https://gitbox.apache.org/repos/asf/commons-math.git

commit e33ddb3350b33efb3d6f3e747f1b4701fcefd73c
Merge: 96e382d 27e464b
Author: avbasak1 <av...@in.ibm.com>
AuthorDate: Mon Jan 24 16:35:58 2022 +0530

    Changes from 'feature__MATH-1563__genetic_algorithm' of apache repo.

 .travis.yml                                        |   1 +
 NOTICE                                             |   2 +-
 commons-math-core/NOTICE                           |   2 +-
 commons-math-core/pom.xml                          |   3 +
 .../commons/math4/core/jdkmath/JdkMathTest.java    |  10 +
 commons-math-examples/NOTICE                       |   2 +-
 commons-math-examples/examples-ga/LICENCE          | 201 ++++++++
 commons-math-examples/examples-ga/NOTICE           |   5 +
 .../examples-ga/examples-ga-math-functions/LICENCE | 201 ++++++++
 .../examples-ga/examples-ga-math-functions/NOTICE  |   5 +
 .../examples-ga/examples-ga-tsp/LICENCE            | 201 ++++++++
 .../examples-ga/examples-ga-tsp/NOTICE             |   5 +
 commons-math-examples/examples-sofm/LICENCE        | 256 ----------
 commons-math-examples/examples-sofm/NOTICE         |   6 +-
 .../examples-sofm/chinese-rings/LICENCE            | 256 ----------
 .../examples-sofm/chinese-rings/NOTICE             |   6 +-
 commons-math-examples/examples-sofm/tsp/LICENCE    | 255 ----------
 commons-math-examples/examples-sofm/tsp/NOTICE     |   6 +-
 commons-math-examples/pom.xml                      |  86 ++--
 commons-math-ga/LICENCE                            | 201 ++++++++
 commons-math-ga/NOTICE                             |   5 +
 commons-math-legacy-core/NOTICE                    |   2 +-
 commons-math-legacy-exception/NOTICE               |   2 +-
 commons-math-legacy/NOTICE                         |   2 +-
 .../math4/legacy/analysis/FunctionUtils.java       |   2 +-
 .../analysis/integration/RombergIntegrator.java    |   4 +-
 .../DividedDifferenceInterpolator.java             |   4 +-
 .../analysis/interpolation/LinearInterpolator.java |   8 +-
 .../interpolation/NevilleInterpolator.java         |   2 +-
 ...iecewiseBicubicSplineInterpolatingFunction.java |   8 +-
 .../analysis/interpolation/SplineInterpolator.java |   2 +-
 .../interpolation/UnivariateInterpolator.java      |   2 +-
 .../analysis/polynomials/PolynomialFunction.java   |   4 +-
 .../PolynomialFunctionLagrangeForm.java            |  14 +-
 .../polynomials/PolynomialFunctionNewtonForm.java  |  12 +-
 .../polynomials/PolynomialSplineFunction.java      |  12 +-
 .../legacy/analysis/solvers/LaguerreSolver.java    |  12 +-
 .../math4/legacy/fitting/HarmonicCurveFitter.java  |   2 +-
 .../math4/legacy/linear/Array2DRowRealMatrix.java  |   2 +-
 .../math4/legacy/linear/ArrayRealVector.java       |   2 +-
 .../math4/legacy/linear/BiDiagonalTransformer.java |   2 +-
 .../math4/legacy/linear/BlockFieldMatrix.java      |   2 +-
 .../math4/legacy/linear/BlockRealMatrix.java       |   2 +-
 .../math4/legacy/linear/HessenbergTransformer.java |   4 +-
 .../math4/legacy/linear/SchurTransformer.java      |   4 +-
 .../legacy/linear/TriDiagonalTransformer.java      |   2 +-
 .../nonlinear/scalar/noderiv/CMAESOptimizer.java   |  78 +--
 .../stat/inference/KolmogorovSmirnovTest.java      |   2 +-
 .../AbstractLeastSquaresOptimizerAbstractTest.java |  10 +-
 .../LevenbergMarquardtOptimizerTest.java           |   7 +-
 .../ml/clustering/FuzzyKMeansClustererTest.java    |   5 +-
 .../scalar/noderiv/CMAESOptimizerTest.java         |  19 +-
 .../math4/legacy/stat/StatUtilsTest.java.orig      | 556 ---------------------
 .../std_test_func.simplex.multidirectional.csv     |   2 +-
 .../noderiv/std_test_func.simplex.nelder_mead.csv  |   4 +-
 commons-math-neuralnet/LICENCE                     | 256 ----------
 commons-math-neuralnet/NOTICE                      |   6 +-
 .../apache/commons/math4/neuralnet/Network.java    | 220 +++-----
 .../org/apache/commons/math4/neuralnet/Neuron.java |  57 +--
 .../neuralnet/internal/NeuralNetException.java     |   4 +
 .../commons/math4/neuralnet/oned/NeuronString.java |  73 +--
 .../math4/neuralnet/twod/NeuronSquareMesh2D.java   | 120 ++---
 .../commons/math4/neuralnet/NetworkTest.java       |  46 +-
 .../apache/commons/math4/neuralnet/NeuronTest.java |  31 --
 .../math4/neuralnet/oned/NeuronStringTest.java     |  49 +-
 .../neuralnet/twod/NeuronSquareMesh2DTest.java     |  61 +--
 commons-math-transform/NOTICE                      |   2 +-
 dist-archive/pom.xml                               |  44 +-
 dist-archive/src/assembly/bin.xml                  |   7 -
 pom.xml                                            |  35 +-
 src/changes/changes.xml                            |   3 +
 71 files changed, 1185 insertions(+), 2341 deletions(-)

diff --cc pom.xml
index 818fbb3,42c6cb4..a3ca676
--- a/pom.xml
+++ b/pom.xml
@@@ -126,8 -127,7 +127,6 @@@
  
      <!-- 4. Modules that depend on "legacy" codes. -->
      <module>commons-math-examples</module>
--
-     <module>commons-math-ga</module>
    </modules>
  
    <scm>