svn commit: r1302298 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SymmLQ.java

2012-03-18 Thread celestin
Author: celestin Date: Mon Mar 19 06:46:32 2012 New Revision: 1302298 URL: http://svn.apache.org/viewvc?rev=1302298&view=rev Log: In class o.a.c.math3.linear.SymmLQ - Changed parameter order for the constructor of nested class State (for consistency with the constructor of SymmLQ). - M

svn propchange: r1302298 - svn:log

2012-03-18 Thread celestin
Author: celestin Revision: 1302298 Modified property: svn:log Modified: svn:log at Mon Mar 19 06:55:02 2012 -- --- svn:log (original) +++ svn:log Mon Mar 19 06:55:02 2012 @@ -2,3 +2,4 @@ In class o.a.c.math3.linear.SymmLQ

svn propchange: r1302261 - svn:log

2012-03-18 Thread celestin
Author: celestin Revision: 1302261 Modified property: svn:log Modified: svn:log at Mon Mar 19 06:58:51 2012 -- --- svn:log (original) +++ svn:log Mon Mar 19 06:58:51 2012 @@ -1 +1 @@ -Make State class static +Make State

svn commit: r1302785 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SymmLQ.java

2012-03-19 Thread celestin
Author: celestin Date: Tue Mar 20 06:37:26 2012 New Revision: 1302785 URL: http://svn.apache.org/viewvc?rev=1302785&view=rev Log: In o.a.c.m3.SymmLQ: reduced visibility of some fields/methods (from protected to package protected). See MATH-761. Modified: commons/proper/math/trunk/src/

svn commit: r1302788 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SymmLQ.java

2012-03-20 Thread celestin
Author: celestin Date: Tue Mar 20 07:04:05 2012 New Revision: 1302788 URL: http://svn.apache.org/viewvc?rev=1302788&view=rev Log: In o.a.c.m3.linear.SymmLQ.State, implemented hasConverged() so as to avoid access to private field State.hasConverged through synthetic getters. Modi

svn commit: r1303290 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SymmLQ.java

2012-03-20 Thread celestin
Author: celestin Date: Wed Mar 21 05:26:45 2012 New Revision: 1303290 URL: http://svn.apache.org/viewvc?rev=1303290&view=rev Log: In org.apache.commons.math3.linear.SymmLQ.State, created - boolean bEqualsNullVector() - boolean betaIsZero() to improve data encapsulation (see MATH

svn commit: r1303292 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/SymmLQTest.java

2012-03-20 Thread celestin
Author: celestin Date: Wed Mar 21 05:49:14 2012 New Revision: 1303292 URL: http://svn.apache.org/viewvc?rev=1303292&view=rev Log: Modified unit test of o.a.c.m3.linear.SymmLQ to show that lines 1208-1209 are essential (see MATH-761). Modified: commons/proper/math/trunk/src/test/java

svn commit: r1303649 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SymmLQ.java

2012-03-21 Thread celestin
Author: celestin Date: Thu Mar 22 03:51:05 2012 New Revision: 1303649 URL: http://svn.apache.org/viewvc?rev=1303649&view=rev Log: Replaced Math with FastMath. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SymmLQ.java Modified: commons/proper/math/t

svn commit: r1303674 - in /commons/proper/math/trunk/src: main/java/org/apache/commons/math3/linear/SymmLQ.java test/java/org/apache/commons/math3/linear/SymmLQTest.java

2012-03-22 Thread celestin
Author: celestin Date: Thu Mar 22 07:15:24 2012 New Revision: 1303674 URL: http://svn.apache.org/viewvc?rev=1303674&view=rev Log: In o.a.c.m3.SymmLQ.State, created accessors - RealVector getRightHandSideVector(), - RealVector getSolution(), - double getNormOfResidual(), see MATH

svn commit: r1304215 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/SymmLQTest.java

2012-03-23 Thread celestin
Author: celestin Date: Fri Mar 23 07:25:44 2012 New Revision: 1304215 URL: http://svn.apache.org/viewvc?rev=1304215&view=rev Log: Corrected copy/paste typo, which caused ConjugateGradient to be tested in place of SymmLQ. Some tests now fail (see MATH-770). Modified: commons/proper/

svn commit: r1304216 - in /commons/proper/math/trunk/src: main/java/org/apache/commons/math3/linear/JacobiPreconditioner.java test/java/org/apache/commons/math3/linear/SymmLQTest.java

2012-03-23 Thread celestin
Author: celestin Date: Fri Mar 23 07:50:51 2012 New Revision: 1304216 URL: http://svn.apache.org/viewvc?rev=1304216&view=rev Log: In SymmLQTest, testPreconditionedNormOfResidual() now passes. Previous failure was due to the test itself, not to the implementation of SymmLQ. See MATH

svn commit: r1304574 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SymmLQ.java

2012-03-23 Thread celestin
Author: celestin Date: Fri Mar 23 19:51:12 2012 New Revision: 1304574 URL: http://svn.apache.org/viewvc?rev=1304574&view=rev Log: In o.a.c.m3.SymmLQ.State - the current solution is now refined at each iteration, as the overhead is negligible - SymmLQ.State.xL is no longer a reference to

svn propchange: r1304574 - svn:log

2012-03-23 Thread celestin
Author: celestin Revision: 1304574 Modified property: svn:log Modified: svn:log at Fri Mar 23 19:57:22 2012 -- --- svn:log (original) +++ svn:log Fri Mar 23 19:57:22 2012 @@ -6,3 +6,4 @@ In o.a.c.m3.SymmLQ.solveInPlace

svn commit: r1305734 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SymmLQ.java

2012-03-26 Thread celestin
Author: celestin Date: Tue Mar 27 05:41:58 2012 New Revision: 1305734 URL: http://svn.apache.org/viewvc?rev=1305734&view=rev Log: Javadoc Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SymmLQ.java Modified: commons/proper/math/trunk/src/main/java

svn commit: r1305738 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/PreconditionedIterativeLinearSolver.java

2012-03-26 Thread celestin
Author: celestin Date: Tue Mar 27 06:02:15 2012 New Revision: 1305738 URL: http://svn.apache.org/viewvc?rev=1305738&view=rev Log: Changed o.a.c.m3.linear.PreconditionedIterativeLinearSolver according to MATH-771. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/m

svn commit: r1306133 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/ConjugateGradient.java

2012-03-27 Thread celestin
Author: celestin Date: Wed Mar 28 03:00:33 2012 New Revision: 1306133 URL: http://svn.apache.org/viewvc?rev=1306133&view=rev Log: Changed o.a.c.m3.linear.ConjugateGradient according to MATH-771. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/li

svn commit: r1306135 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SymmLQ.java

2012-03-27 Thread celestin
Author: celestin Date: Wed Mar 28 03:19:33 2012 New Revision: 1306135 URL: http://svn.apache.org/viewvc?rev=1306135&view=rev Log: Changed o.a.c.m3.linear.SymmLQ according to MATH-771. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SymmLQ.java Modi

svn commit: r1306148 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/JacobiPreconditioner.java

2012-03-27 Thread celestin
Author: celestin Date: Wed Mar 28 04:05:59 2012 New Revision: 1306148 URL: http://svn.apache.org/viewvc?rev=1306148&view=rev Log: Changed o.a.c.m3.linear.JacobiPreconditioner according to MATH-771. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/li

svn commit: r1306150 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SymmLQ.java

2012-03-27 Thread celestin
Author: celestin Date: Wed Mar 28 04:18:44 2012 New Revision: 1306150 URL: http://svn.apache.org/viewvc?rev=1306150&view=rev Log: Changed o.a.c.m3.linear.SymmLQ according to MATH-771 (bis). Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SymmLQ.

svn commit: r1306177 - in /commons/proper/math/trunk/src: main/java/org/apache/commons/math3/util/Decimal64.java main/java/org/apache/commons/math3/util/Decimal64Field.java test/java/org/apache/common

2012-03-27 Thread celestin
Author: celestin Date: Wed Mar 28 05:40:46 2012 New Revision: 1306177 URL: http://svn.apache.org/viewvc?rev=1306177&view=rev Log: Created Decimal64, a wrapper class around the primitive double type. This class implements FieldElement. See MATH-756. Added: commons/proper/math/trunk/src/

svn commit: r1306759 - /commons/proper/math/trunk/src/changes/changes.xml

2012-03-29 Thread celestin
Author: celestin Date: Thu Mar 29 09:04:24 2012 New Revision: 1306759 URL: http://svn.apache.org/viewvc?rev=1306759&view=rev Log: Updated changes.xml following resolution of MATH-756. Modified: commons/proper/math/trunk/src/changes/changes.xml Modified: commons/proper/math/trunk/src/cha

svn commit: r1308098 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/QRDecomposition.java

2012-04-01 Thread celestin
Author: celestin Date: Sun Apr 1 13:10:08 2012 New Revision: 1308098 URL: http://svn.apache.org/viewvc?rev=1308098&view=rev Log: Javadoc. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/QRDecomposition.java Modified: commons/proper/math/trunk/src/

svn commit: r1332076 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/general/AbstractLeastSquaresOptimizer.java

2012-04-29 Thread celestin
Author: celestin Date: Mon Apr 30 06:38:00 2012 New Revision: 1332076 URL: http://svn.apache.org/viewvc?rev=1332076&view=rev Log: In o.a.c.m3.optimization.general.AbstractLeastSquaresOptimizer, improved the javadoc of guessParametersErrors() (MATH-784). Modified: commons/proper/math/t

svn commit: r1332086 - in /commons/proper/math/trunk/src/test: java/org/apache/commons/math3/optimization/general/ resources/org/apache/commons/math3/optimization/ resources/org/apache/commons/math3/o

2012-04-30 Thread celestin
Author: celestin Date: Mon Apr 30 07:41:58 2012 New Revision: 1332086 URL: http://svn.apache.org/viewvc?rev=1332086&view=rev Log: Implemented convenience classes for easy access to NIST Statistical Reference Datasets (StRD). These classes are used for unit testin

svn propchange: r1332086 - svn:log

2012-04-30 Thread celestin
Author: celestin Revision: 1332086 Modified property: svn:log Modified: svn:log at Mon Apr 30 07:48:33 2012 -- --- svn:log (original) +++ svn:log Mon Apr 30 07:48:33 2012 @@ -1,2 +1,3 @@ Implemented convenience classes

svn commit: r1332162 - in /commons/proper/math/trunk/src/main/java/org/apache/commons/math3: optimization/direct/PowellOptimizer.java util/MathArrays.java util/Precision.java

2012-04-30 Thread celestin
Author: celestin Date: Mon Apr 30 11:26:10 2012 New Revision: 1332162 URL: http://svn.apache.org/viewvc?rev=1332162&view=rev Log: Checkstyle. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/direct/PowellOptimizer.java commons/proper/math/t

svn commit: r1332163 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/optimization/general/

2012-04-30 Thread celestin
Author: celestin Date: Mon Apr 30 11:30:48 2012 New Revision: 1332163 URL: http://svn.apache.org/viewvc?rev=1332163&view=rev Log: Added missing svn properties. Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/optimization/gen

svn commit: r1332924 - in /commons/proper/math/trunk/src/test: java/org/apache/commons/math3/optimization/general/ resources/org/apache/commons/math3/optimization/general/

2012-05-01 Thread celestin
Author: celestin Date: Wed May 2 05:50:59 2012 New Revision: 1332924 URL: http://svn.apache.org/viewvc?rev=1332924&view=rev Log: Standard unit test of least-squares optimizers based on NIST's Statistical Reference Datasets (StRD). Added: commons/proper/math/trunk/src/test/reso

svn commit: r1334315 - in /commons/proper/math/trunk/src: main/java/org/apache/commons/math3/optimization/general/ main/java/org/apache/commons/math3/special/ test/java/org/apache/commons/math3/optimi

2012-05-04 Thread celestin
Author: celestin Date: Sat May 5 05:10:22 2012 New Revision: 1334315 URL: http://svn.apache.org/viewvc?rev=1334315&view=rev Log: In o.a.c.m3.optimization.general.AbstractLeastSquaresOptimizer - deprecated guessParametersErrors() - created getSigma() which should be used instead (but is

svn propchange: r1334315 - svn:log

2012-05-04 Thread celestin
Author: celestin Revision: 1334315 Modified property: svn:log Modified: svn:log at Sat May 5 05:17:58 2012 -- --- svn:log (original) +++ svn:log Sat May 5 05:17:58 2012 @@ -1,3 +1,6 @@ In o.a.c.m3

svn commit: r1336056 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/special/Gamma.java

2012-05-09 Thread celestin
Author: celestin Date: Wed May 9 10:27:04 2012 New Revision: 1336056 URL: http://svn.apache.org/viewvc?rev=1336056&view=rev Log: Reverted changes accidentally committed in r1334315. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/special/Gamma.java Modi

svn commit: r1336483 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/special/Gamma.java

2012-05-09 Thread celestin
Author: celestin Date: Thu May 10 05:08:01 2012 New Revision: 1336483 URL: http://svn.apache.org/viewvc?rev=1336483&view=rev Log: In o.a.c.m3.special.Gamma, exposed the Lanczos approximation (MATH-753). Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/spe

svn commit: r1338548 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/distribution/GammaDistribution.java

2012-05-14 Thread celestin
Author: celestin Date: Tue May 15 06:21:53 2012 New Revision: 1338548 URL: http://svn.apache.org/viewvc?rev=1338548&view=rev Log: New implementation of the pdf of Gamma distributions. Solves MATH-753. Additional unit tests to come. Modified: commons/proper/math/trunk/src/main/java

svn commit: r1338986 [5/7] - /commons/proper/math/trunk/src/test/resources/org/apache/commons/math3/distribution/

2012-05-15 Thread celestin
Propchange: commons/proper/math/trunk/src/test/resources/org/apache/commons/math3/distribution/gamma-distribution-shape-1000.csv -- svn:eol-style = native Propchange: commons/proper/math/trunk/src/test/resources/org/

svn commit: r1338986 [1/7] - /commons/proper/math/trunk/src/test/resources/org/apache/commons/math3/distribution/

2012-05-15 Thread celestin
Author: celestin Date: Wed May 16 03:31:10 2012 New Revision: 1338986 URL: http://svn.apache.org/viewvc?rev=1338986&view=rev Log: Gamma distribution: reference data for unit tests (see MATH-753). Added: commons/proper/math/trunk/src/test/resources/org/apache/commons/math3/distribu

svn commit: r1338986 [7/7] - /commons/proper/math/trunk/src/test/resources/org/apache/commons/math3/distribution/

2012-05-15 Thread celestin
Propchange: commons/proper/math/trunk/src/test/resources/org/apache/commons/math3/distribution/gamma-distribution-shape-142.csv -- svn:eol-style = native Propchange: commons/proper/math/trunk/src/test/resources/org/a

svn commit: r1338989 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/optimization/general/StraightLineProblem.java

2012-05-15 Thread celestin
Author: celestin Date: Wed May 16 03:34:32 2012 New Revision: 1338989 URL: http://svn.apache.org/viewvc?rev=1338989&view=rev Log: Removed illegal @Override. Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/optimization/general/StraightLineProblem.java Modi

svn commit: r1339014 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/distribution/GammaDistributionTest.java

2012-05-15 Thread celestin
Author: celestin Date: Wed May 16 05:36:40 2012 New Revision: 1339014 URL: http://svn.apache.org/viewvc?rev=1339014&view=rev Log: Unit tests for GammaDistribution, based on reference data generated with Maxima. Solves MATH-753. Modified: commons/proper/math/trunk/src/test/java/org/ap

svn commit: r1341318 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/distribution/GammaDistribution.java

2012-05-21 Thread celestin
Author: celestin Date: Tue May 22 06:34:37 2012 New Revision: 1341318 URL: http://svn.apache.org/viewvc?rev=1341318&view=rev Log: In o.a.c.m3.distribution.GammaDistribution, - renamed class variable alpha to shape, - renamed class variable beta to scale. Updated javadoc accordingly. See

svn commit: r1342404 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/distribution/GammaDistribution.java

2012-05-24 Thread celestin
Author: celestin Date: Thu May 24 19:23:37 2012 New Revision: 1342404 URL: http://svn.apache.org/viewvc?rev=1342404&view=rev Log: In o.a.c.m3.distribution.GammaDistribution - deprecated getAlpha() and created getShape() - deprecated getBeta() and created getScale(). See MATH-791. Modi

svn commit: r1343157 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/RealVectorPreservingVisitor.java

2012-05-28 Thread celestin
Author: celestin Date: Mon May 28 07:54:16 2012 New Revision: 1343157 URL: http://svn.apache.org/viewvc?rev=1343157&view=rev Log: MATH-792: created a visitor for vectors. Entries of the vector being visited are not modified. Added: commons/proper/math/trunk/src/main/java/org/apache/com

svn commit: r1343163 - in /commons/proper/math/trunk/src: main/java/org/apache/commons/math3/linear/ test/java/org/apache/commons/math3/linear/

2012-05-28 Thread celestin
Author: celestin Date: Mon May 28 08:31:13 2012 New Revision: 1343163 URL: http://svn.apache.org/viewvc?rev=1343163&view=rev Log: MATH-792: - various methods to visit the entries of a RealVector (entries are unmodified), - default implementation in RealVector abstract class, - unit t

svn commit: r1343217 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/UnmodifiableRealVectorAbstractTest.java

2012-05-28 Thread celestin
Author: celestin Date: Mon May 28 12:09:41 2012 New Revision: 1343217 URL: http://svn.apache.org/viewvc?rev=1343217&view=rev Log: MATH-792: walkInXyzOrder methods are excluded from automatic testing (based on reflexion). Modified: commons/proper/math/trunk/src/test/java/org/apache/com

svn commit: r1343219 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/RealVectorAbstractTest.java

2012-05-28 Thread celestin
Author: celestin Date: Mon May 28 12:17:38 2012 New Revision: 1343219 URL: http://svn.apache.org/viewvc?rev=1343219&view=rev Log: Copy/paste typo (MATH-792). Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/RealVectorAbstractTest.java Modified: com

svn commit: r1343293 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/RealVector.java

2012-05-28 Thread celestin
Author: celestin Date: Mon May 28 15:39:57 2012 New Revision: 1343293 URL: http://svn.apache.org/viewvc?rev=1343293&view=rev Log: Removed explicit conversion from int to Integer. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/RealVector.java Modi

svn commit: r1343339 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/RealVectorPreservingVisitor.java

2012-05-28 Thread celestin
Author: celestin Date: Mon May 28 17:53:37 2012 New Revision: 1343339 URL: http://svn.apache.org/viewvc?rev=1343339&view=rev Log: Javadoc typo. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/RealVectorPreservingVisitor.java Modified: commons/proper/

svn commit: r1343342 - in /commons/proper/math/trunk: ./ src/main/java/org/apache/commons/math3/linear/ src/test/java/org/apache/commons/math3/linear/

2012-05-28 Thread celestin
Author: celestin Date: Mon May 28 18:03:44 2012 New Revision: 1343342 URL: http://svn.apache.org/viewvc?rev=1343342&view=rev Log: MATH-792: - definition of RealVectorChangingVisitor, - various methods to visit the entries of a RealVector (entries are possibly modified), - def

svn commit: r1343345 - /commons/proper/math/trunk/checkstyle.xml

2012-05-28 Thread celestin
Author: celestin Date: Mon May 28 18:17:44 2012 New Revision: 1343345 URL: http://svn.apache.org/viewvc?rev=1343345&view=rev Log: Reverted changes mistakenly committed in r1343342. Modified: commons/proper/math/trunk/checkstyle.xml Modified: commons/proper/math/trunk/checkstyle.xml

svn commit: r1343346 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/ArrayRealVector.java

2012-05-28 Thread celestin
Author: celestin Date: Mon May 28 18:21:39 2012 New Revision: 1343346 URL: http://svn.apache.org/viewvc?rev=1343346&view=rev Log: Reverted changes mistakenly committed in r1343342. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/ArrayRealVector.

svn commit: r1343546 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/RealVector.java

2012-05-28 Thread celestin
Author: celestin Date: Tue May 29 05:34:41 2012 New Revision: 1343546 URL: http://svn.apache.org/viewvc?rev=1343546&view=rev Log: Added 'final' keyword. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/RealVector.java Modified: commons/pro

svn commit: r1343547 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/ArrayRealVector.java

2012-05-28 Thread celestin
Author: celestin Date: Tue May 29 05:36:19 2012 New Revision: 1343547 URL: http://svn.apache.org/viewvc?rev=1343547&view=rev Log: MATH-792: implementation of the visitor pattern for ArrayRealVector (overrides default implementation in RealVector). Modified: commons/proper/math/trunk

svn commit: r1344102 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/TestUtils.java

2012-05-29 Thread celestin
Author: celestin Date: Wed May 30 05:13:28 2012 New Revision: 1344102 URL: http://svn.apache.org/viewvc?rev=1344102&view=rev Log: Created utility method to assert equality of two instances of RealVector. Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/m

svn commit: r1344104 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/RealVectorAbstractTest.java

2012-05-29 Thread celestin
Author: celestin Date: Wed May 30 05:25:46 2012 New Revision: 1344104 URL: http://svn.apache.org/viewvc?rev=1344104&view=rev Log: Added missing license. Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/RealVectorAbstractTest.java Modified: commons/pr

svn commit: r1344570 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/ArrayRealVector.java

2012-05-30 Thread celestin
Author: celestin Date: Thu May 31 05:49:03 2012 New Revision: 1344570 URL: http://svn.apache.org/viewvc?rev=1344570&view=rev Log: ArrayRealVector.getEntry(int) did not throw the expected when called with an invalid index. Modified: commons/proper/math/trunk/src/main/java/org/apache/com

svn commit: r1344571 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: ArrayRealVectorTest.java RealVectorAbstractTest.java RealVectorTest.java SparseRealVectorTest.java

2012-05-30 Thread celestin
Author: celestin Date: Thu May 31 05:51:16 2012 New Revision: 1344571 URL: http://svn.apache.org/viewvc?rev=1344571&view=rev Log: MATH-795: factored out testDataInOut(). Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/ArrayRealVectorTest.java com

svn commit: r1344574 - /commons/proper/math/trunk/src/changes/changes.xml

2012-05-30 Thread celestin
Author: celestin Date: Thu May 31 06:13:33 2012 New Revision: 1344574 URL: http://svn.apache.org/viewvc?rev=1344574&view=rev Log: Added MATH-791 to the list of changes. Modified: commons/proper/math/trunk/src/changes/changes.xml Modified: commons/proper/math/trunk/src/changes/changes

svn commit: r1344989 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: ArrayRealVectorTest.java RealVectorAbstractTest.java SparseRealVectorTest.java

2012-05-31 Thread celestin
Author: celestin Date: Fri Jun 1 05:31:47 2012 New Revision: 1344989 URL: http://svn.apache.org/viewvc?rev=1344989&view=rev Log: MATH-795: factored out testMapFunctions. Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/ArrayRealVectorTest.java com

svn commit: r1345443 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: ArrayRealVectorTest.java RealVectorAbstractTest.java RealVectorTest.java SparseRealVectorTest.java

2012-06-01 Thread celestin
Author: celestin Date: Sat Jun 2 05:34:40 2012 New Revision: 1345443 URL: http://svn.apache.org/viewvc?rev=1345443&view=rev Log: MATH-795: factored out testBasicFunctions(). Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/ArrayRealVectorTest.

svn commit: r1345472 - in /commons/proper/math/trunk/src: changes/ main/java/org/apache/commons/math3/exception/util/ main/resources/assets/org/apache/commons/math3/exception/util/ test/java/org/apach

2012-06-02 Thread celestin
Author: celestin Date: Sat Jun 2 09:46:23 2012 New Revision: 1345472 URL: http://svn.apache.org/viewvc?rev=1345472&view=rev Log: In LocalizedFormats, removed ALPHA and BETA which are no longer used (MATH-796). Modified: commons/proper/math/trunk/src/changes/changes.xml commons/pr

svn commit: r1345837 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: ArrayRealVectorTest.java RealVectorAbstractTest.java SparseRealVectorTest.java

2012-06-03 Thread celestin
Author: celestin Date: Mon Jun 4 05:40:33 2012 New Revision: 1345837 URL: http://svn.apache.org/viewvc?rev=1345837&view=rev Log: MATH-795: factored out testOuterProduct() and testMisc(). Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/li

svn commit: r1346240 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: ArrayRealVectorTest.java RealVectorAbstractTest.java SparseRealVectorTest.java

2012-06-04 Thread celestin
Author: celestin Date: Tue Jun 5 05:10:55 2012 New Revision: 1346240 URL: http://svn.apache.org/viewvc?rev=1346240&view=rev Log: MATH-795: factoring out testPredicates(). Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/ArrayRealVectorTest.java com

svn commit: r1346243 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: ArrayRealVectorTest.java RealVectorAbstractTest.java RealVectorTest.java SparseRealVectorTest.java

2012-06-04 Thread celestin
Author: celestin Date: Tue Jun 5 05:37:37 2012 New Revision: 1346243 URL: http://svn.apache.org/viewvc?rev=1346243&view=rev Log: MATH-795 - Factored out testSerial(). - In RealVectorTest, the vector returned by create(double[]) should really be of type RealVectorTest.TestVectorImpl, as

svn commit: r1346245 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: ArrayRealVectorTest.java RealVectorAbstractTest.java

2012-06-04 Thread celestin
Author: celestin Date: Tue Jun 5 05:45:41 2012 New Revision: 1346245 URL: http://svn.apache.org/viewvc?rev=1346245&view=rev Log: MATH-795: factored out testAddToEntry(). Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/ArrayRealVectorTest.java com

svn commit: r1346467 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: ArrayRealVectorTest.java RealVectorAbstractTest.java

2012-06-05 Thread celestin
Author: celestin Date: Tue Jun 5 17:01:57 2012 New Revision: 1346467 URL: http://svn.apache.org/viewvc?rev=1346467&view=rev Log: MATH-795: factored out testMinMax(). Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/ArrayRealVectorTest.java com

svn commit: r1346471 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: ArrayRealVectorTest.java RealVectorAbstractTest.java RealVectorTest.java

2012-06-05 Thread celestin
Author: celestin Date: Tue Jun 5 17:08:20 2012 New Revision: 1346471 URL: http://svn.apache.org/viewvc?rev=1346471&view=rev Log: MATH-795: factored out testCosine(). Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/ArrayRealVectorTest.java com

svn commit: r1346475 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: ArrayRealVectorTest.java RealVectorAbstractTest.java

2012-06-05 Thread celestin
Author: celestin Date: Tue Jun 5 17:11:15 2012 New Revision: 1346475 URL: http://svn.apache.org/viewvc?rev=1346475&view=rev Log: MATH-795: factored out testCosinePrecondition1(), testCosinePrecondition2() and testCosinePrecondition3(). Modified: commons/proper/math/trunk/src/test/java

svn commit: r1346523 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: ArrayRealVectorTest.java RealVectorAbstractTest.java RealVectorTest.java

2012-06-05 Thread celestin
Author: celestin Date: Tue Jun 5 18:46:29 2012 New Revision: 1346523 URL: http://svn.apache.org/viewvc?rev=1346523&view=rev Log: MATH-795: factored out - testCombinePreconditionSameType() - testCombineSameType() - testCombinePreconditionMixedType() - testCombineMixedTypes() Modi

svn commit: r1346723 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: ArrayRealVectorTest.java RealVectorAbstractTest.java

2012-06-05 Thread celestin
Author: celestin Date: Wed Jun 6 03:19:18 2012 New Revision: 1346723 URL: http://svn.apache.org/viewvc?rev=1346723&view=rev Log: MATH-795: factored out - testCombineToSelfPreconditionSameType() - testCombineToSelfSameType() - testCombineToSelfPreconditionMixe

svn commit: r1346725 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: ArrayRealVectorTest.java RealVectorTest.java SparseRealVectorTest.java

2012-06-05 Thread celestin
Author: celestin Date: Wed Jun 6 03:23:39 2012 New Revision: 1346725 URL: http://svn.apache.org/viewvc?rev=1346725&view=rev Log: MATH-795: removed unused imports. Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/ArrayRealVectorTest.java commons/pr

svn commit: r1346729 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/RealVectorAbstractTest.java

2012-06-05 Thread celestin
Author: celestin Date: Wed Jun 6 03:56:02 2012 New Revision: 1346729 URL: http://svn.apache.org/viewvc?rev=1346729&view=rev Log: MATH-795: in RealVectorAbstractTest, added method getPreferredEntryValue() which allows testing vectors with some entries set to a preferred value (e.g. 0 for sp

svn commit: r1346740 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: RealVectorAbstractTest.java RealVectorTest.java

2012-06-05 Thread celestin
Author: celestin Date: Wed Jun 6 05:21:18 2012 New Revision: 1346740 URL: http://svn.apache.org/viewvc?rev=1346740&view=rev Log: MATH-795: - some methods are not implemented by RealVector, so they should not be tested: added @Ignore annotations in RealVectorTest. - in RealVectorAbstract

svn commit: r1346741 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/RealVectorAbstractTest.java

2012-06-05 Thread celestin
Author: celestin Date: Wed Jun 6 05:41:21 2012 New Revision: 1346741 URL: http://svn.apache.org/viewvc?rev=1346741&view=rev Log: MATH-795: in RealVectorAbstractTest - defined class variables data1 and data2 for the creation of test vectors. Attention has been paid to "special"

svn commit: r1347392 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/TestUtils.java

2012-06-06 Thread celestin
Author: celestin Date: Thu Jun 7 05:05:33 2012 New Revision: 1347392 URL: http://svn.apache.org/viewvc?rev=1347392&view=rev Log: Utility method for testing for equality of expected double[] with RealVector. Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/m

svn commit: r1347393 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/TestUtils.java

2012-06-06 Thread celestin
Author: celestin Date: Thu Jun 7 05:12:46 2012 New Revision: 1347393 URL: http://svn.apache.org/viewvc?rev=1347393&view=rev Log: In TestUtils, improved handling of error messages for - assertEquals(String, double[], RealVector, double), - assertEquals(String, RealVector, RealVector, do

svn commit: r1347395 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: RealVectorAbstractTest.java RealVectorTest.java

2012-06-06 Thread celestin
Author: celestin Date: Thu Jun 7 05:22:52 2012 New Revision: 1347395 URL: http://svn.apache.org/viewvc?rev=1347395&view=rev Log: MATH-795: - added in RealVectorAbstractTest tests for RealVector.getEntry() preconditions, - modified exceptions thrown in RealVectorTest.TestVector

svn commit: r1347401 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/RealVectorAbstractTest.java

2012-06-06 Thread celestin
Author: celestin Date: Thu Jun 7 05:45:44 2012 New Revision: 1347401 URL: http://svn.apache.org/viewvc?rev=1347401&view=rev Log: MATH-795: splitted tests for - RealVector.setEntry(int, double), - RealVector.addToEntry(int, double). Modified: commons/proper/math/trunk/src/test/java

svn commit: r1347717 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/ArrayRealVector.java

2012-06-07 Thread celestin
Author: celestin Date: Thu Jun 7 17:10:48 2012 New Revision: 1347717 URL: http://svn.apache.org/viewvc?rev=1347717&view=rev Log: MATH-795: RealVectorTest.testAddToEntryInvalidIndex1() and RealVectorTest.testAddToEntryInvalidIndex2() revealed a bug in ArrayRealVector.addToEntry(int, do

svn commit: r1347877 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: RealVectorAbstractTest.java RealVectorTest.java

2012-06-07 Thread celestin
Author: celestin Date: Fri Jun 8 03:24:01 2012 New Revision: 1347877 URL: http://svn.apache.org/viewvc?rev=1347877&view=rev Log: MATH-795: extracted testGetSubVector() from RealVectorAbstractTest.testDataInOut(). Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/m

svn commit: r1347883 - in /commons/proper/math/trunk/src: main/java/org/apache/commons/math3/exception/util/ main/java/org/apache/commons/math3/linear/ main/resources/assets/org/apache/commons/math3/e

2012-06-07 Thread celestin
Author: celestin Date: Fri Jun 8 05:50:11 2012 New Revision: 1347883 URL: http://svn.apache.org/viewvc?rev=1347883&view=rev Log: MATH-795: extracted - testSubVectorInvalidIndex1(), - testSubVectorInvalidIndex2(), - testSubVectorInvalidIndex3(), - testSubVectorInvalidIndex4()

svn commit: r1348211 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: RealVectorAbstractTest.java RealVectorTest.java

2012-06-08 Thread celestin
Author: celestin Date: Fri Jun 8 19:56:42 2012 New Revision: 1348211 URL: http://svn.apache.org/viewvc?rev=1348211&view=rev Log: MATH-795: in RealVectorAbstractTest, added unit tests for RealVector.setSubVector(int, RealVector). Modified: commons/proper/math/trunk/src/test/java/org/ap

svn commit: r1348225 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: RealVectorAbstractTest.java RealVectorTest.java

2012-06-08 Thread celestin
Author: celestin Date: Fri Jun 8 20:10:49 2012 New Revision: 1348225 URL: http://svn.apache.org/viewvc?rev=1348225&view=rev Log: MATH-795: in RealVectorAbstractTest, extracted testIsNaN() from testPredicates(). Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/m

svn commit: r1348228 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: RealVectorAbstractTest.java RealVectorTest.java

2012-06-08 Thread celestin
Author: celestin Date: Fri Jun 8 20:18:10 2012 New Revision: 1348228 URL: http://svn.apache.org/viewvc?rev=1348228&view=rev Log: MATH-795: in RealVectorAbstractTest, extracted testIsInfinite() from testPredicates(). Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/m

svn commit: r1348396 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/RealVector.java

2012-06-09 Thread celestin
Author: celestin Date: Sat Jun 9 13:11:38 2012 New Revision: 1348396 URL: http://svn.apache.org/viewvc?rev=1348396&view=rev Log: MATH-802. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/RealVector.java Modified: commons/proper/math/trunk/src/main/

svn commit: r1348438 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/RealVector.java

2012-06-09 Thread celestin
Author: celestin Date: Sat Jun 9 16:00:05 2012 New Revision: 1348438 URL: http://svn.apache.org/viewvc?rev=1348438&view=rev Log: MATH-795: in RealVector.add(RealVector) and RealVector.subtract(RealVector) (default implementation), exceptional cases were not handled properly. Modi

svn commit: r1348485 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: RealVectorAbstractTest.java RealVectorTest.java

2012-06-09 Thread celestin
Author: celestin Date: Sat Jun 9 18:59:44 2012 New Revision: 1348485 URL: http://svn.apache.org/viewvc?rev=1348485&view=rev Log: MATH-795 - In RealVectorTest.TestVectorImpl, removed add(RealVector) and subtract(RealVector), as they prevented testing of default implementations (provided in

svn commit: r1348721 - in /commons/proper/math/trunk/src: main/java/org/apache/commons/math3/linear/OpenMapRealVector.java test/java/org/apache/commons/math3/linear/SparseRealVectorTest.java

2012-06-10 Thread celestin
Author: celestin Date: Mon Jun 11 05:52:16 2012 New Revision: 1348721 URL: http://svn.apache.org/viewvc?rev=1348721&view=rev Log: MATH-803: - modified OpenMapRealVector.ebeMultiply() and ebeDivide() to handle special cases 0d * NaN, 0d * Infinity, 0d / 0d and 0d / NaN. - added implementa

svn commit: r1352782 - in /commons/proper/math/trunk/src: main/java/org/apache/commons/math3/linear/ test/java/org/apache/commons/math3/linear/

2012-06-22 Thread celestin
Author: celestin Date: Fri Jun 22 07:06:28 2012 New Revision: 1352782 URL: http://svn.apache.org/viewvc?rev=1352782&view=rev Log: MATH-803 : deprecated RealVector.ebeMultiply() and RealVector.ebeDivide(), and updated unit tests accordingly. Modified: commons/proper/math/trunk/src/main/

svn commit: r1353140 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/Incrementor.java

2012-06-23 Thread celestin
Author: celestin Date: Sat Jun 23 15:09:14 2012 New Revision: 1353140 URL: http://svn.apache.org/viewvc?rev=1353140&view=rev Log: In o.a.c.m3.Incrementor, modified constructor to allow for null values of the MaxCountExceededCallback. Null value was previously not checked wich could lead

svn commit: r1353141 - in /commons/proper/math/trunk/src: changes/ main/java/org/apache/commons/math3/linear/ main/java/org/apache/commons/math3/util/

2012-06-23 Thread celestin
Author: celestin Date: Sat Jun 23 15:12:34 2012 New Revision: 1353141 URL: http://svn.apache.org/viewvc?rev=1353141&view=rev Log: MATH-807: in o.a.c.m3.util.IterationManager, created a new constructor which allows for the specification of a o.a.c.m3.util.Incrementor.MaxCountExceededCallback

svn commit: r1353386 - in /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util: Incrementor.java IterationManager.java

2012-06-24 Thread celestin
Author: celestin Date: Mon Jun 25 05:22:58 2012 New Revision: 1353386 URL: http://svn.apache.org/viewvc?rev=1353386&view=rev Log: Reverted changes committed in r1353140. In o.a.c.m3.util.Incrementor, a NullPointerException is now thrown if the call-back function specified at constructio

svn commit: r1353387 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/RealVectorAbstractTest.java

2012-06-24 Thread celestin
Author: celestin Date: Mon Jun 25 05:42:09 2012 New Revision: 1353387 URL: http://svn.apache.org/viewvc?rev=1353387&view=rev Log: MATH-795: factored out unit tests of getDistance and getNorm. Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/li

svn commit: r1353388 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: RealVectorAbstractTest.java RealVectorTest.java

2012-06-24 Thread celestin
Author: celestin Date: Mon Jun 25 05:57:14 2012 New Revision: 1353388 URL: http://svn.apache.org/viewvc?rev=1353388&view=rev Log: MATH-795: factored out test of getL1Norm, getL1Distance, getLInfNorm, getLInfDistance. Modified: commons/proper/math/trunk/src/test/java/org/apache/com

svn commit: r1353451 - in /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util: Incrementor.java IterationManager.java

2012-06-25 Thread celestin
Author: celestin Date: Mon Jun 25 10:44:38 2012 New Revision: 1353451 URL: http://svn.apache.org/viewvc?rev=1353451&view=rev Log: Replaced NullPointerException with NullArgumentException. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/Incrementor.

svn commit: r1353586 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/IterationManager.java

2012-06-25 Thread celestin
Author: celestin Date: Mon Jun 25 15:00:11 2012 New Revision: 1353586 URL: http://svn.apache.org/viewvc?rev=1353586&view=rev Log: In the constructor of IterationManager, removed the check for null argument (already carried out in the constructor of Incrementor). Modified: commons/pr

svn commit: r1353824 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/RealVectorAbstractTest.java

2012-06-25 Thread celestin
Author: celestin Date: Tue Jun 26 05:45:13 2012 New Revision: 1353824 URL: http://svn.apache.org/viewvc?rev=1353824&view=rev Log: MATH-795: factored out unit tests for RealVector.mapAdd(double), RealVector.mapSubtract(double), RealVector.mapDivide(double), RealVector.mapSubtract(do

svn commit: r1353825 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear: RealVectorAbstractTest.java RealVectorTest.java

2012-06-25 Thread celestin
Author: celestin Date: Tue Jun 26 06:09:27 2012 New Revision: 1353825 URL: http://svn.apache.org/viewvc?rev=1353825&view=rev Log: MATH-795: factored out unit tests for RealVector.map(UnivariateFunction) and RealVector.mapToSelf(UnivariateFunction). Modified: commons/proper/math/trunk

svn propchange: r1353825 - svn:log

2012-06-25 Thread celestin
Author: celestin Revision: 1353825 Modified property: svn:log Modified: svn:log at Tue Jun 26 06:13:45 2012 -- --- svn:log (original) +++ svn:log Tue Jun 26 06:13:45 2012 @@ -1 +1,3 @@ MATH-795: factored out unit tests

svn commit: r1354329 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/RealVectorAbstractTest.java

2012-06-26 Thread celestin
Author: celestin Date: Wed Jun 27 05:37:55 2012 New Revision: 1354329 URL: http://svn.apache.org/viewvc?rev=1354329&view=rev Log: MATH-795: in RealVectorAbstractTest, created an array of specific entry values to be tested. Generalized its use in some unit tests. Modified: commons/pr

svn commit: r1354330 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/RealVectorAbstractTest.java

2012-06-26 Thread celestin
Author: celestin Date: Wed Jun 27 05:53:09 2012 New Revision: 1354330 URL: http://svn.apache.org/viewvc?rev=1354330&view=rev Log: MATH-795: factored out unit test of RealMatrix RealVector.outerProduct(RealVector) This test fails with the default implementation provided by the abstract c

svn commit: r1354822 - in /commons/proper/math/trunk/src: main/java/org/apache/commons/math3/linear/ test/java/org/apache/commons/math3/linear/

2012-06-27 Thread celestin
Author: celestin Date: Thu Jun 28 06:09:51 2012 New Revision: 1354822 URL: http://svn.apache.org/viewvc?rev=1354822&view=rev Log: MATH-795: In org.apache.commons.math3.linear.RealVectorAbstractTest - factored out unit tests of RealVector RealVector.set(double), - created unit tests of do

  1   2   3   4   >