Re: svn commit: r1348024 - in /commons/proper/math/trunk/src: main/java/org/apache/commons/math3/stat/inference/MannWhitneyUTest.java test/java/org/apache/commons/math3/stat/inference/MannWhitneyUTest

2012-06-11 Thread Mikkel Meyer Andersen
2012/6/12 Thomas Neidhart : > On 06/08/2012 01:04 PM, m...@apache.org wrote: >> Author: mikl >> Date: Fri Jun  8 11:04:11 2012 >> New Revision: 1348024 >> >> URL: http://svn.apache.org/viewvc?rev=1348024&view=rev >> Log: >> MATH-790: Patch applied to fix the overflow issue. >> >> Modified: >>    

Re: 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-11 Thread Sébastien Brisard
Hello, 2012/6/11 Gilles Sadowski : > Hi. > >> >> >> +         * MATH-803: it is not sufficient to loop through non zero >> >> >> entries of >> >> >> +         * this only. Indeed, if this[i] = 0d and v[i] = 0d, then >> >> >> +         * this[i] / v[i] = NaN, and not 0d. >> >> >> +         */ >> >

[proxy2] Create new utils module...

2012-06-11 Thread James Carman
All, When trying to test some of the utility classes (such as DuckTypinginvoker), it would be useful to have a ProxyFactory to play with. However, in "core", we don't have access to one since they've been broken out into their own modules (which reference core). What if we left "core" for just t

Re: svn commit: r1348024 - in /commons/proper/math/trunk/src: main/java/org/apache/commons/math3/stat/inference/MannWhitneyUTest.java test/java/org/apache/commons/math3/stat/inference/MannWhitneyUTest

2012-06-11 Thread Thomas Neidhart
On 06/08/2012 01:04 PM, m...@apache.org wrote: > Author: mikl > Date: Fri Jun 8 11:04:11 2012 > New Revision: 1348024 > > URL: http://svn.apache.org/viewvc?rev=1348024&view=rev > Log: > MATH-790: Patch applied to fix the overflow issue. > > Modified: > > commons/proper/math/trunk/src/main/j

Re: 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-11 Thread Gilles Sadowski
Hi. > >> >> +         * MATH-803: it is not sufficient to loop through non zero > >> >> entries of > >> >> +         * this only. Indeed, if this[i] = 0d and v[i] = 0d, then > >> >> +         * this[i] / v[i] = NaN, and not 0d. > >> >> +         */ > >> >> +        final int n = getDimension(); >

Re: 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-11 Thread Sébastien Brisard
Hello Gilles, 2012/6/11 Gilles Sadowski : > Hello Sébastien. > >> >> +        /* >> >> +         * MATH-803: it is not sufficient to loop through non zero >> >> entries of >> >> +         * this only. Indeed, if this[i] = 0d and v[i] = 0d, then >> >> +         * this[i] / v[i] = NaN, and not 0d.

Re: another new URL() question

2012-06-11 Thread Honton, Charles
Mark, The only mechanism available to extend URLClassLoader's protocol handling in a Sun jvm is to add a URLStreamHandler. It's a difficult task to re-implement the class loading architecture, and I'm sure the application server environments don't mess with this basic. (I'm not so sure about the

Re: 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-11 Thread Gilles Sadowski
Hello Sébastien. > >> +        /* > >> +         * MATH-803: it is not sufficient to loop through non zero > >> entries of > >> +         * this only. Indeed, if this[i] = 0d and v[i] = 0d, then > >> +         * this[i] / v[i] = NaN, and not 0d. > >> +         */ > >> +        final int n = getDi

Re: 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-11 Thread Sébastien Brisard
Hi Gilles, 2012/6/11 Gilles Sadowski : > Hello. > >> 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 *

Re: another new URL() question

2012-06-11 Thread Matt Benson
Hi, Mark! This is why I was confused when we touched on this on IRC--I was thinking that the correct handling of URLs was an orthogonal function to [classscan]'s *use* of those same URLs, for this reason. I had thought there had been, at one time, an OSS Java project to help manage these URLStrea

Re: [ALL] Using a Tool Like Sonar...

2012-06-11 Thread Olivier Lamy
Hi, Have a look @ http://wiki.apache.org/general/SonarInstance . "Usually" (depending on maintainers spare time) it's fast when the jira has been created (or ping me) 2012/6/9 Christian Grobmeier : > On Sat, Jun 9, 2012 at 2:26 PM, Gary Gregory wrote: >> If sonar for snapshots on a.a.o replaces P

Re: 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-11 Thread Gilles Sadowski
Hello. > 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 implem

[GUMP@vmgump]: Project commons-jelly-tags-jmx (in module commons-jelly) failed

2012-06-11 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-jelly-tags-jmx has an issue affecting its community integration. T

[GUMP@vmgump]: Project commons-scxml-test (in module apache-commons) failed

2012-06-11 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-scxml-test has an issue affecting its community integration. This