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

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

commit c98e638d7313fec1cc5808cfaa18b2bceaa9864c
Merge: 97dd402 6ce950d
Author: Gilles Sadowski <gillese...@gmail.com>
AuthorDate: Fri Jun 25 14:51:00 2021 +0200

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

 .../examples/sofm/chineserings/ChineseRings.java   |   24 +-
 .../sofm/chineserings/ChineseRingsClassifier.java  |   16 +-
 .../examples/sofm/chineserings/StandAlone.java     |   27 +-
 .../examples/sofm/chineserings/package-info.java   |   11 +-
 .../examples/neuralnet/sofm/tsp/StandAlone.java    |    8 +-
 .../examples/neuralnet/sofm/tsp/package-info.java  |   11 +-
 .../commons/math4/examples/sofm/tsp/City.java      |   12 +-
 .../math4/examples/sofm/tsp/StandAlone.java        |   36 +-
 .../sofm/tsp/TravellingSalesmanSolver.java         |   25 +-
 .../math4/examples/sofm/tsp/package-info.java      |   11 +-
 .../commons/math4/legacy/core/FieldElement.java    |    6 +-
 .../commons/math4/legacy/core/IntegerSequence.java |    4 +-
 .../commons/math4/legacy/core/MathArrays.java      |   42 +-
 .../math4/legacy/core/RealFieldElement.java        |    7 +-
 .../apache/commons/math4/legacy/core/dfp/Dfp.java  |  501 +-
 .../commons/math4/legacy/core/dfp/DfpDec.java      |   92 +-
 .../commons/math4/legacy/core/dfp/DfpField.java    |   59 +-
 .../commons/math4/legacy/core/dfp/DfpMath.java     |   40 +-
 .../math4/legacy/core/jdkmath/AccurateMath.java    | 1423 +++--
 .../legacy/core/jdkmath/AccurateMathCalc.java      |  156 +-
 .../core/jdkmath/AccurateMathLiteralArrays.java    | 6154 ++++++++++----------
 .../math4/legacy/core/jdkmath/package-info.java    |   10 +-
 .../commons/math4/legacy/core/package-info.java    |   10 +-
 .../core/ExtendedFieldElementAbstractTest.java     |   22 +-
 .../math4/legacy/core/IntegerSequenceTest.java     |   31 +-
 .../commons/math4/legacy/core/MathArraysTest.java  |  283 +-
 .../apache/commons/math4/legacy/core/PairTest.java |   29 +-
 .../commons/math4/legacy/core/dfp/DfpDecTest.java  |   34 +-
 .../commons/math4/legacy/core/dfp/DfpMathTest.java |   34 +-
 .../commons/math4/legacy/core/dfp/DfpTest.java     |   76 +-
 .../jdkmath/AccurateMathStrictComparisonTest.java  |   82 +-
 .../legacy/core/jdkmath/AccurateMathTest.java      |  241 +-
 .../legacy/exception/ConvergenceException.java     |    2 +-
 .../legacy/exception/MathArithmeticException.java  |    2 +-
 .../exception/MathIllegalArgumentException.java    |    2 +-
 .../exception/MathIllegalNumberException.java      |    2 +-
 .../exception/MathIllegalStateException.java       |    4 +-
 .../math4/legacy/exception/MathInternalError.java  |    2 +-
 .../legacy/exception/MathRuntimeException.java     |    4 +-
 .../MathUnsupportedOperationException.java         |    2 +-
 .../exception/MaxCountExceededException.java       |    2 +-
 .../legacy/exception/NoBracketingException.java    |    2 +-
 .../legacy/exception/NotFiniteNumberException.java |    4 +-
 .../legacy/exception/NullArgumentException.java    |    4 +-
 .../math4/legacy/exception/ZeroException.java      |    4 +-
 .../math4/legacy/exception/util/ArgUtils.java      |    3 +-
 .../legacy/exception/util/ExceptionContext.java    |    8 +-
 .../exception/NotFiniteNumberExceptionTest.java    |   25 +-
 .../exception/NullArgumentExceptionTest.java       |   24 +-
 .../exception/util/ExceptionContextTest.java       |   18 +-
 .../exception/util/LocalizedFormatsTest.java       |    6 +-
 commons-math-legacy/pom.xml                        |    8 +
 .../commons/math4/neuralnet/DistanceMeasure.java   |    4 +-
 .../math4/neuralnet/FeatureInitializerFactory.java |    5 +-
 .../apache/commons/math4/neuralnet/MapRanking.java |   14 +-
 .../apache/commons/math4/neuralnet/MapUtils.java   |    2 +-
 .../package-info.java}                             |   11 +-
 .../commons/math4/neuralnet/oned/NeuronString.java |    2 +-
 .../math4/neuralnet/sofm/KohonenUpdateAction.java  |    4 +-
 .../sofm/LearningFactorFunctionFactory.java        |    2 +-
 .../sofm/NeighbourhoodSizeFunctionFactory.java     |    2 +-
 .../sofm/util/QuasiSigmoidDecayFunction.java       |    2 +-
 .../math4/neuralnet/twod/NeuronSquareMesh2D.java   |   28 +-
 .../neuralnet/twod/util/UnifiedDistanceMatrix.java |    2 +-
 .../commons/math4/neuralnet/MapRankingTest.java    |   28 +-
 .../commons/math4/neuralnet/NetworkTest.java       |   18 +-
 .../apache/commons/math4/neuralnet/NeuronTest.java |   22 +-
 .../math4/neuralnet/OffsetFeatureInitializer.java  |    3 +-
 .../math4/neuralnet/oned/NeuronStringTest.java     |   26 +-
 .../neuralnet/sofm/KohonenUpdateActionTest.java    |    6 +-
 .../sofm/LearningFactorFunctionFactoryTest.java    |   20 +-
 .../sofm/NeighbourhoodSizeFunctionFactoryTest.java |   16 +-
 .../sofm/util/ExponentialDecayFunctionTest.java    |   10 +-
 .../sofm/util/QuasiSigmoidDecayFunctionTest.java   |    8 +-
 .../neuralnet/twod/NeuronSquareMesh2DTest.java     |  138 +-
 .../neuralnet/twod/util/LocationFinderTest.java    |    2 +-
 .../math4/transform/FastCosineTransform.java       |    8 +-
 .../math4/transform/FastFourierTransform.java      |    6 +-
 .../math4/transform/FastHadamardTransform.java     |    4 +-
 .../commons/math4/transform/FastSineTransform.java |    8 +-
 .../math4/transform/TransformException.java        |    2 +-
 .../commons/math4/transform/TransformUtils.java    |    3 +-
 .../math4/transform/FastCosineTransformerTest.java |   35 +-
 .../transform/FastFourierTransformerTest.java      |   60 +-
 .../transform/FastHadamardTransformerTest.java     |   27 +-
 .../math4/transform/FastSineTransformerTest.java   |   37 +-
 .../transform/RealTransformerAbstractTest.java     |   26 +-
 .../math4/transform/TransformUtilsTest.java        |    8 +-
 .../{checkstyle.xml => checkstyle-legacy.xml}      |    0
 ...ions.xml => checkstyle-suppressions-legacy.xml} |    0
 .../checkstyle/checkstyle-suppressions.xml         |   32 +-
 src/main/resources/checkstyle/checkstyle.xml       |    1 +
 92 files changed, 5132 insertions(+), 5145 deletions(-)

Reply via email to