You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2020/02/04 20:39:25 UTC

[commons-geometry] branch master updated (7c5ff83 -> 2ad038d)

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

aherbert pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-geometry.git.


    from 7c5ff83  Merge branch 'GEOMETRY-63__Matt'
     new 1a543e5  GEOMETRY-75: adding performance module and VectorPerformance test
     new 7db57ef  GEOMETRY-75: using multiple input vectors per benchmark
     new 9874573  GEOMETRY-85: bumping commons-rng 1.2 -> 1.3; using normalized gaussian distribution for vectors in VectorPerformance
     new 697a2fe  GEOMETRY-75: improving input vector creation in VectorPerformance
     new 4d5b404  GEOMETRY-75: small tweaks from PR feedback
     new 2ad038d  Merge pull request #60 from darkma773r/geometry-75

The 307 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:
 commons-geometry-examples/LICENSE.txt              | 201 +++++++++++
 NOTICE.txt => commons-geometry-examples/NOTICE.txt |   4 +-
 .../README.md                                      | 213 ++++++------
 commons-geometry-examples/examples-jmh/LICENSE.txt | 201 +++++++++++
 .../examples-jmh/NOTICE.txt                        |   4 +-
 .../examples-jmh}/README.md                        | 211 +++++------
 commons-geometry-examples/examples-jmh/pom.xml     | 192 ++++++++++
 .../examples/jmh/euclidean/VectorPerformance.java  | 385 +++++++++++++++++++++
 .../examples/jmh/euclidean}/package-info.java      |  11 +-
 .../geometry/examples/jmh}/package-info.java       |   8 +-
 commons-geometry-examples/pom.xml                  |  77 +++++
 pom.xml                                            |   2 +-
 12 files changed, 1285 insertions(+), 224 deletions(-)
 create mode 100644 commons-geometry-examples/LICENSE.txt
 copy NOTICE.txt => commons-geometry-examples/NOTICE.txt (58%)
 copy {commons-geometry-core => commons-geometry-examples}/README.md (76%)
 create mode 100644 commons-geometry-examples/examples-jmh/LICENSE.txt
 copy NOTICE.txt => commons-geometry-examples/examples-jmh/NOTICE.txt (58%)
 copy {commons-geometry-core => commons-geometry-examples/examples-jmh}/README.md (77%)
 create mode 100644 commons-geometry-examples/examples-jmh/pom.xml
 create mode 100644 commons-geometry-examples/examples-jmh/src/main/java/org/apache/commons/geometry/examples/jmh/euclidean/VectorPerformance.java
 copy {commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed => commons-geometry-examples/examples-jmh/src/main/java/org/apache/commons/geometry/examples/jmh/euclidean}/package-info.java (83%)
 copy {commons-geometry-enclosing/src/main/java/org/apache/commons/geometry/enclosing/euclidean/threed => commons-geometry-examples/examples-jmh/src/main/java/org/apache/commons/geometry/examples/jmh}/package-info.java (80%)
 create mode 100644 commons-geometry-examples/pom.xml