This is an automated email from the ASF dual-hosted git repository. erans pushed a change to branch feature__MATH-1563__genetic_algorithm in repository https://gitbox.apache.org/repos/asf/commons-math.git.
from 03f3c72 Move GA module declaration to ensure that there are no dependencies on legacy codes. add c6d5f4b MATH-1594: Remove "Serializable". add 382759b Javadoc. add 08e51aa Unused "import" statements. add 468d817 Remove comparator. add d35194c Update copyright notice (2022). add e65ed4f Add accessors. add 00e783b Remove non-applicable terms from "LICENCE" and "NOTICE" files. new 4623862 MATH-1563: Introducing new implementation of GA functionality (WIP). new 7fa4c43 Move GA module declaration to ensure that there are no dependencies on legacy codes. new 73dab9d MATH-1563: Introducing new implementation of GA functionality (WIP). new ef55bf6 Move GA module declaration to ensure that there are no dependencies on legacy codes. new d347e6a Merge branch 'feature__MATH-1563__genetic_algorithm' of https://gitbox.apache.org/repos/asf/commons-math into feature__MATH-1563__genetic_algorithm new 76d6c40 Add "LICENCE" and "NOTICE" files. The 6 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: NOTICE | 2 +- commons-math-core/NOTICE | 2 +- 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-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 +- 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 +- 32 files changed, 972 insertions(+), 1574 deletions(-) create mode 100644 commons-math-examples/examples-ga/LICENCE create mode 100644 commons-math-examples/examples-ga/NOTICE create mode 100644 commons-math-examples/examples-ga/examples-ga-math-functions/LICENCE create mode 100644 commons-math-examples/examples-ga/examples-ga-math-functions/NOTICE create mode 100644 commons-math-examples/examples-ga/examples-ga-tsp/LICENCE create mode 100644 commons-math-examples/examples-ga/examples-ga-tsp/NOTICE create mode 100644 commons-math-ga/LICENCE create mode 100644 commons-math-ga/NOTICE