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 27e464b Add dependency on "ga" module. add c6b4ca9 MATH-1640: Do not try to outguess the caller. add 4844e3a Upgrade dependencies. add e18ac1b Replace deprecated calls. add f862efe MATH-1589: Remove spurious "throws" clause. add 0223328 Upgrade dependency. add 49a38cd Minor cosmetic change (POM). add 134d731 Unused "import". add 565b896 MATH-1580: "K-Means" clustering example. add 74a851b MATH-1371: Elkan's enhancement to "K-Means" algorithm. add 9ce9f49 Add "ElkanKMeansPlusPlusClusterer" to example application. add 06301d0 Track changes. new 6a87190 Check build on feature branch. new 5d71c14 MATH-1563: Introducing new implementation of GA functionality (WIP). new 19f1c78 Move GA module declaration to ensure that there are no dependencies on legacy codes. new 8084cdd Add "LICENCE" and "NOTICE" files. new 994835b Add dependency on "ga" module. new 7e2213f Merge branch 'feature__MATH-1563__genetic_algorithm' of https://gitbox.apache.org/repos/asf/commons-math into feature__MATH-1563__genetic_algorithm 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: .../examples-kmeans}/LICENCE | 0 .../examples-kmeans}/NOTICE | 0 .../examples-kmeans/image}/LICENCE | 0 .../examples-kmeans/image}/NOTICE | 0 .../image}/pom.xml | 23 +- .../math4/examples/kmeans/image/ImageData.java | 151 ++++++++ .../math4/examples/kmeans/image/StandAlone.java | 117 ++++++ .../math4/examples/kmeans/image}/package-info.java | 4 +- .../{examples-sofm => examples-kmeans}/pom.xml | 11 +- .../examples-sofm/chinese-rings/pom.xml | 2 +- .../examples/sofm/chineserings/ChineseRings.java | 2 +- .../sofm/chineserings/ChineseRingsClassifier.java | 4 +- commons-math-examples/examples-sofm/tsp/pom.xml | 2 +- .../math4/examples/sofm/tsp/StandAlone.java | 2 +- commons-math-examples/pom.xml | 18 +- .../math4/legacy/ml/clustering/Clusterer.java | 15 +- .../clustering/ElkanKMeansPlusPlusClusterer.java | 409 +++++++++++++++++++++ .../ml/clustering/KMeansPlusPlusClusterer.java | 24 +- .../ElkanKMeansPlusPlusClustererTest.java | 137 +++++++ .../ml/clustering/KMeansPlusPlusClustererTest.java | 28 +- .../clustering/MiniBatchKMeansClustererTest.java | 4 +- .../evaluation/CalinskiHarabaszTest.java | 4 +- pom.xml | 2 +- src/changes/changes.xml | 7 + .../clustering/ImageClusteringExample.java | 203 ---------- src/userguide/resources/ColorfulBird.jpg | Bin 98227 -> 0 bytes 26 files changed, 901 insertions(+), 268 deletions(-) copy {commons-math-neuralnet => commons-math-examples/examples-kmeans}/LICENCE (100%) copy {commons-math-neuralnet => commons-math-examples/examples-kmeans}/NOTICE (100%) copy {commons-math-neuralnet => commons-math-examples/examples-kmeans/image}/LICENCE (100%) copy {commons-math-neuralnet => commons-math-examples/examples-kmeans/image}/NOTICE (100%) copy commons-math-examples/{examples-sofm/chinese-rings => examples-kmeans/image}/pom.xml (75%) create mode 100644 commons-math-examples/examples-kmeans/image/src/main/java/org/apache/commons/math4/examples/kmeans/image/ImageData.java create mode 100644 commons-math-examples/examples-kmeans/image/src/main/java/org/apache/commons/math4/examples/kmeans/image/StandAlone.java copy commons-math-examples/{examples-sofm/tsp/src/main/java/org/apache/commons/math4/examples/sofm/tsp => examples-kmeans/image/src/main/java/org/apache/commons/math4/examples/kmeans/image}/package-info.java (89%) copy commons-math-examples/{examples-sofm => examples-kmeans}/pom.xml (87%) create mode 100644 commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/ml/clustering/ElkanKMeansPlusPlusClusterer.java create mode 100644 commons-math-legacy/src/test/java/org/apache/commons/math4/legacy/ml/clustering/ElkanKMeansPlusPlusClustererTest.java delete mode 100644 src/userguide/java/org/apache/commons/math4/userguide/clustering/ImageClusteringExample.java delete mode 100644 src/userguide/resources/ColorfulBird.jpg