You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2015/04/13 22:16:27 UTC

[3/3] [math] Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/commons-math

Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/commons-math

Conflicts:
	src/changes/changes.xml


Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/0a799598
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/0a799598
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/0a799598

Branch: refs/heads/master
Commit: 0a799598cbb436e67d65561793d1a8a7c56c3446
Parents: 845e1d5 e588c8f
Author: Thomas Neidhart <th...@gmail.com>
Authored: Mon Apr 13 22:14:53 2015 +0200
Committer: Thomas Neidhart <th...@gmail.com>
Committed: Mon Apr 13 22:14:53 2015 +0200

----------------------------------------------------------------------
 pom.xml                                         |    8 +-
 src/changes/changes.xml                         |    8 +
 .../math4/exception/util/LocalizedFormats.java  |    4 +
 .../math4/geometry/euclidean/threed/Plane.java  |    8 +-
 .../euclidean/threed/PolyhedronsSet.java        |  201 +++-
 .../math4/ml/neuralnet/oned/NeuronString.java   |    2 +
 .../ml/neuralnet/twod/NeuronSquareMesh2D.java   |    2 +
 .../util/LocalizedFormats_fr.properties         |    4 +
 src/site/site.xml                               |    2 +
 .../AbstractRealDistributionTest.java           |   30 +-
 .../exception/util/LocalizedFormatsTest.java    |    2 +-
 .../geometry/euclidean/threed/PLYParser.java    |  290 +++++
 .../euclidean/threed/PolyhedronsSetTest.java    |   91 +-
 .../math4/util/FastMathTestPerformance.java     | 1091 ------------------
 .../threed/pentomino-N-bad-orientation.ply      |   40 +
 .../euclidean/threed/pentomino-N-hole.ply       |   39 +
 .../threed/pentomino-N-out-of-plane.ply         |   40 +
 .../euclidean/threed/pentomino-N-too-close.ply  |   86 ++
 .../geometry/euclidean/threed/pentomino-N.ply   |   39 +
 .../userguide/FastMathTestPerformance.java      | 1087 +++++++++++++++++
 20 files changed, 1946 insertions(+), 1128 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/0a799598/src/changes/changes.xml
----------------------------------------------------------------------
diff --cc src/changes/changes.xml
index 8eaca42,3dada49..b19b759
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@@ -54,30 -54,13 +54,38 @@@ If the output is not quite correct, che
      </release>
  
      <release version="4.0" date="XXXX-XX-XX" description="">
 +      <action dev="tn" type="remove" issue="MATH-1205">
 +        Removed methods "test(...)" from "AbstractUnivariateStatistic".
 +        The already existing methods "MathArrays#verifyValues(...)" shall
 +        be used instead.
 +      </action>    
 +      <action dev="tn" type="update" issue="MATH-1205">
 +        The abstract class "AbstractStorelessUnivariateStatistic" does not
 +        extend anymore from "AbstractUnivariateStatistic".
 +      </action>    
 +      <action dev="tn" type="update" issue="MATH-1205">
 +        Default implementation of
 +        "AbstractStorelessUnivariateStatistic#equals(Object)"
 +        will only return true if both instances have the same type. Previously
 +        different statistics were considered to be equal if their current state
 +        happened to be equal.
 +      </action>    
 +      <action dev="tn" type="update" issue="MATH-1205">
 +        Default implementations of "AbstractStorelessUnivariateStatistic#evaluate(...)"
 +        do not alter the internal state anymore. Instead a temporary copy of
 +        the statistic is created for evaluation purposes.
 +      </action>    
 +      <action dev="tn" type="fix" issue="MATH-1205">
 +        Methods "evaluate(...)" of class "Variance" changed the internal state
 +        although it was stated differently in the javadoc.
++      </action>
+       <action dev="luc" type="fix" issue="MATH-1195">
+         Moved FastMathTestPerformance out of the main test tree, as is is
+         a benchmark rather than a test.
+       </action>    
+       <action dev="luc" type="add">
+         Added a way to build polyhedrons sets from a list of vertices and
+         facets specified using vertices indices.
        </action>    
        <action dev="luc" type="fix" issue="MATH-1191">
          Fixed ignored method parameters in QRDecomposition protected methods.