[GUMP@vmgump]: Project commons-vfs2-sandbox (in module apache-commons) failed

2012-05-28 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-vfs2-sandbox has an issue affecting its community integration.

[GUMP@vmgump]: Project commons-id (in module commons-sandbox) failed

2012-05-28 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-id has an issue affecting its community integration. This issue

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

2012-05-28 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

[math] SparseRealVectorTest, SparseRealMatrixTest, SparseFieldMatrixTest, SparseFieldVectorTest

2012-05-28 Thread Sébastien Brisard
Hi, is there a reason why these classes are called SparseXxxTest, instead of OpenMapXxxTest? Am I missing something? Sébastien - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail:

Re: [math] SparseRealVectorTest, SparseRealMatrixTest, SparseFieldMatrixTest, SparseFieldVectorTest

2012-05-28 Thread Luc Maisonobe
Le 28/05/2012 09:42, Sébastien Brisard a écrit : Hi, is there a reason why these classes are called SparseXxxTest, instead of OpenMapXxxTest? Am I missing something? I don't remember the reason, it may either be that we renamed the library class and forgot to rename the test classes, or we

Re: [math] SparseRealVectorTest, SparseRealMatrixTest, SparseFieldMatrixTest, SparseFieldVectorTest

2012-05-28 Thread Thomas Neidhart
On 05/28/2012 11:23 AM, Luc Maisonobe wrote: Le 28/05/2012 09:42, Sébastien Brisard a écrit : Hi, is there a reason why these classes are called SparseXxxTest, instead of OpenMapXxxTest? Am I missing something? I don't remember the reason, it may either be that we renamed the library class

[continuum] BUILD FAILURE: Apache Commons - Commons Math - Default Maven 2 Build Definition (Java 1.5)

2012-05-28 Thread Continuum@vmbuild
Online report : http://vmbuild.apache.org/continuum/buildResult.action?buildId=22678projectId=97 Build statistics: State: Failed Previous State: Ok Started at: Mon 28 May 2012 09:39:04 + Finished at: Mon 28 May 2012 09:42:01 + Total time: 2m 57s Build Trigger: Schedule

Re: 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 Gilles Sadowski
Hi Sébastien. [...] Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/RealVector.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/RealVector.java?rev=1343163r1=1343162r2=1343163view=diff

Re: 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 Konstantin Kolinko
2012/5/28 Gilles Sadowski gil...@harfang.homelinux.org: Hi Sébastien. [...] Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/RealVector.java URL:

Re: 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 Gilles Sadowski
Hi. [...] +    protected void checkIndices(final int start, final int end) { +        final int dim = getDimension(); +        if ((start 0) || (start = dim)) { +            throw new OutOfRangeException(LocalizedFormats.INDEX, +                                          

Re: 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 Sébastien Brisard
Hi Gilles, Why do you call valueOf? I have to say I do not like implicit conversions, that's why I tend to always use Integer.valueOf and the likes. However, if you think that it leads to less readable code, I'm OK with your way of seeing things. Best regards, Sébastien

Re: [continuum] BUILD FAILURE: Apache Commons - Commons Math - Default Maven 2 Build Definition (Java 1.5)

2012-05-28 Thread Sébastien Brisard
Hi, 2012/5/28 Continuum@vmbuild contin...@apache.org: Online report : http://vmbuild.apache.org/continuum/buildResult.action?buildId=22678projectId=97 Build statistics:  State: Failed  Previous State: Ok  Started at: Mon 28 May 2012 09:39:04 +  Finished at: Mon 28 May 2012 09:42:01

Re: [math] SparseRealVectorTest, SparseRealMatrixTest, SparseFieldMatrixTest, SparseFieldVectorTest

2012-05-28 Thread Sébastien Brisard
Hi, 2012/5/28 Thomas Neidhart thomas.neidh...@gmail.com: On 05/28/2012 11:23 AM, Luc Maisonobe wrote: Le 28/05/2012 09:42, Sébastien Brisard a écrit : Hi, is there a reason why these classes are called SparseXxxTest, instead of OpenMapXxxTest? Am I missing something? I don't remember the

Re: [continuum] BUILD FAILURE: Apache Commons - Commons Math - Default Maven 2 Build Definition (Java 1.5)

2012-05-28 Thread Sébastien Brisard
Hi again, should be fixed in r1343217. The fix is not fully satisfactory, as the visitor pattern gets untested on unmodifiable views of vectors. However, I intend to refactor the tests for all vector classes (introducing a common RealVectorAbstractTest base class), and am hoping that this base

Re: 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 Gilles Sadowski
Hello. Why do you call valueOf? I have to say I do not like implicit conversions, that's why I tend to always use Integer.valueOf and the likes. Why? However, if you think that it leads to less readable code, I'm OK with your way of seeing things. Good! ;-) Gilles

Re: 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 Sébastien Brisard
Hi Gilles, 2012/5/28 Gilles Sadowski gil...@harfang.homelinux.org: Hello. Why do you call valueOf? I have to say I do not like implicit conversions, that's why I tend to always use Integer.valueOf and the likes. Why? This is going to get philosophical: I would not dare to claim that

Re: 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 Thomas Neidhart
On 05/28/2012 02:28 PM, Sébastien Brisard wrote: Hi Gilles, 2012/5/28 Gilles Sadowski gil...@harfang.homelinux.org: Hello. Why do you call valueOf? I have to say I do not like implicit conversions, that's why I tend to always use Integer.valueOf and the likes. Why? This is going to

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

2012-05-28 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-math has an issue affecting its community integration. This issue

[continuum] BUILD FAILURE: Apache Commons - Commons IO - Build using Java 1.6

2012-05-28 Thread Continuum@vmbuild
Online report : http://vmbuild.apache.org/continuum/buildResult.action?buildId=22688projectId=83 Build statistics: State: Failed Previous State: Ok Started at: Mon 28 May 2012 14:20:27 + Finished at: Mon 28 May 2012 14:22:18 + Total time: 1m 50s Build Trigger: Schedule

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

2012-05-28 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-jxpath has an issue affecting its community integration. This

Re: 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 sebb
On 28 May 2012 13:28, Sébastien Brisard sebastien.bris...@m4x.org wrote: Hi Gilles, 2012/5/28 Gilles Sadowski gil...@harfang.homelinux.org: Hello. Why do you call valueOf? I have to say I do not like implicit conversions, that's why I tend to always use Integer.valueOf and the likes.

Re: 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 Sébastien Brisard
Hello again, 2012/5/28 sebb seb...@gmail.com: On 28 May 2012 13:28, Sébastien Brisard sebastien.bris...@m4x.org wrote: Hi Gilles, 2012/5/28 Gilles Sadowski gil...@harfang.homelinux.org: Hello. Why do you call valueOf? I have to say I do not like implicit conversions, that's why I

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

2012-05-28 Thread sebb
On 28 May 2012 16:39, celes...@apache.org wrote: Author: celestin Date: Mon May 28 15:39:57 2012 New Revision: 1343293 URL: http://svn.apache.org/viewvc?rev=1343293view=rev Log: Removed explicit conversion from int to Integer. -1; I don't think we had concensus on removing it.

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

2012-05-28 Thread Sébastien Brisard
2012/5/28 sebb seb...@gmail.com: On 28 May 2012 16:39,  celes...@apache.org wrote: Author: celestin Date: Mon May 28 15:39:57 2012 New Revision: 1343293 URL: http://svn.apache.org/viewvc?rev=1343293view=rev Log: Removed explicit conversion from int to Integer. -1; I don't think we had

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

2012-05-28 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-proxy-test has an issue affecting its community integration. This

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

2012-05-28 Thread sebb
On 28 May 2012 17:12, Sébastien Brisard sebastien.bris...@m4x.org wrote: 2012/5/28 sebb seb...@gmail.com: On 28 May 2012 16:39,  celes...@apache.org wrote: Author: celestin Date: Mon May 28 15:39:57 2012 New Revision: 1343293 URL: http://svn.apache.org/viewvc?rev=1343293view=rev Log:

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

2012-05-28 Thread Sébastien Brisard
2012/5/28 sebb seb...@gmail.com: On 28 May 2012 17:12, Sébastien Brisard sebastien.bris...@m4x.org wrote: 2012/5/28 sebb seb...@gmail.com: On 28 May 2012 16:39,  celes...@apache.org wrote: Author: celestin Date: Mon May 28 15:39:57 2012 New Revision: 1343293 URL:

[GUMP@vmgump]: Project commons-vfs2-sandbox (in module apache-commons) failed

2012-05-28 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-vfs2-sandbox has an issue affecting its community integration.

[GUMP@vmgump]: Project commons-id (in module commons-sandbox) failed

2012-05-28 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-id has an issue affecting its community integration. This issue

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

2012-05-28 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

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

2012-05-28 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.

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

2012-05-28 Thread Gilles Sadowski
On Mon, May 28, 2012 at 04:58:33PM +0100, sebb wrote: On 28 May 2012 16:39, celes...@apache.org wrote: Author: celestin Date: Mon May 28 15:39:57 2012 New Revision: 1343293 URL: http://svn.apache.org/viewvc?rev=1343293view=rev Log: Removed explicit conversion from int to Integer.

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

2012-05-28 Thread Gilles Sadowski
That's true we didn't. However (see my last message), this is really of little consequence, and I didn't really want to get into a new to-serialize-or-not-to-serialize-that-s-the-question endless debate. I was the one who initially defended explicit conversion as opposed to autoboxing, so

Re: 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 Gilles Sadowski
Hi. That was the initial reason why I moved from C++ to Java ten years ago: too many things happened behind my back. Arguably a lot more happens so with Java! Gilles [...] - To unsubscribe, e-mail:

Re: [Math] Serializable (again)

2012-05-28 Thread Heinz Kredel
Am Dienstag 22 Mai 2012, 11:28:27 schrieb Gilles Sadowski: On Sun, May 20, 2012 at 09:40:25PM +0200, Heinz Kredel wrote: Am Dienstag 15 Mai 2012, 23:25:46 schrieb Gilles Sadowski: Hello. as I am also interested in short term serialization just for moving objects between a

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

2012-05-28 Thread Sébastien Brisard
Hello, I don't see why there should be a consensus to remove something that was never there in the first place. The vast majority of such exception instantiations do not perform explicit conversion; so I'd be inclined to think that there should be a consensus to change that. Best regards,

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

2012-05-28 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-jxpath has an issue affecting its community integration. This

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

2012-05-28 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-digester3 has an issue affecting its community integration. This

[GUMP@vmgump]: Project commons-graph (in module commons-sandbox) failed

2012-05-28 Thread commons-graph development
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-graph has an issue affecting its community integration. This