Re: [math] Consistent use of ExceptionContext [was "using the ExceptionContext facility"]

2011-08-28 Thread Sébastien Brisard
Hello everyone, Looking at the present hierarchy of exceptions, I've had some further thoughts, actually supporting the use of context rather than property getters. Sticking with the same example, we have two exceptions - NonPositiveDefiniteMatrixException: already implemented - NonPositiveDefinite

Re: [VOTE] Release Commons Configuration 1.7 based on RC1

2011-08-28 Thread Phil Steitz
On 8/28/11 11:53 AM, Oliver Heger wrote: > Am 28.08.2011 20:08, schrieb Gary Gregory: >> +1 to removing the ant build. >> >> Gary > > The ant build files were generated using the maven-ant-plugin. The > whole stuff looks pretty complicated, and I do not like the way it > handles dependencies either

Re: [math] MersenneTwister question

2011-08-28 Thread Greg Sterijevski
My apologies, I was looking at the original c code and neglected to notice the cast. On Mon, Aug 29, 2011 at 12:56 AM, Greg Sterijevski wrote: > Yes, you seem to have a good point. My bad. > > On Mon, Aug 29, 2011 at 12:50 AM, Ted Dunning wrote: > >> Why? >> >> Isn't that what casting as an (int)

Re: [math] MersenneTwister question

2011-08-28 Thread Greg Sterijevski
Yes, you seem to have a good point. My bad. On Mon, Aug 29, 2011 at 12:50 AM, Ted Dunning wrote: > Why? > > Isn't that what casting as an (int) does? > > On Sun, Aug 28, 2011 at 10:17 PM, Greg Sterijevski > wrote: > > > While probably not a big deal, shouldn't the initial element in the array >

Re: [math] MersenneTwister question

2011-08-28 Thread Ted Dunning
Why? Isn't that what casting as an (int) does? On Sun, Aug 28, 2011 at 10:17 PM, Greg Sterijevski wrote: > While probably not a big deal, shouldn't the initial element in the array > mt > be 'anded' by 0xL? > > mt[0]= (int) longMT & 0xL; >

[math] MersenneTwister question

2011-08-28 Thread Greg Sterijevski
Hello All, In the MersenneTwister implementation in commons, I notice the following: @Override public void setSeed(int seed) { // we use a long masked by 0xL as a poor man unsigned int long longMT = seed; mt[0]= (int) longMT; for (mti = 1; mti < N;

Re: [math] Documentation

2011-08-28 Thread Phil Steitz
On 8/28/11 7:24 PM, Greg Sterijevski wrote: > Hello All, > > What tool is used to create the documentation (if one is used at all)? > Specifically, I am looking in commons-math/src/site/xdoc/userguide > If I wanted to add to the regression portion of stat.xml what is the best > way to accomplish th

[math] Documentation

2011-08-28 Thread Greg Sterijevski
Hello All, What tool is used to create the documentation (if one is used at all)? Specifically, I am looking in commons-math/src/site/xdoc/userguide If I wanted to add to the regression portion of stat.xml what is the best way to accomplish this (use vi or some wysiwyg editor)? Thank you, -Greg

Re: [VOTE] Release Commons Configuration 1.7 based on RC1

2011-08-28 Thread Phil Steitz
On 8/28/11 11:53 AM, Oliver Heger wrote: > Am 28.08.2011 20:08, schrieb Gary Gregory: >> +1 to removing the ant build. >> >> Gary > > The ant build files were generated using the maven-ant-plugin. The > whole stuff looks pretty complicated, and I do not like the way it > handles dependencies either

[CANCELED][VOTE] Release Commons Configuration 1.7 based on RC1

2011-08-28 Thread Oliver Heger
This vote is canceled as there are some issues related to the build and the release notes. Thanks for all the feedback! Oliver Am 28.08.2011 12:51, schrieb Oliver Heger: This is a vote to release Apache Commons Configuration 1.7 based on the first RC. Tag: http://svn.apache.org/repos/asf/comm

Re: [VOTE] Release Commons Configuration 1.7 based on RC1

2011-08-28 Thread Oliver Heger
Am 28.08.2011 17:31, schrieb Gary Gregory: The Javadocs links to the JRE are broken: [ERROR] Error fetching link: http://java.sun.com/j2se/1.4.2/docs/api/package-list. Ignored it. The URL to use is: http://download.oracle.com/javase/1.4.2/docs/api/ Not a blocker, but not pretty either. It mak

Re: [VOTE] Release Commons Configuration 1.7 based on RC1

2011-08-28 Thread Oliver Heger
Am 28.08.2011 20:08, schrieb Gary Gregory: What about simply bumping the reqs to java 5? Gary The maven build works with the Java-1.4 profile; if this profile is active, some tests related to vfs2 dependencies are excluded. Unfortunately I did not test the ant build under Java 1.4 :-( Vfs

Re: [VOTE] Release Commons Configuration 1.7 based on RC1

2011-08-28 Thread Oliver Heger
Am 28.08.2011 20:08, schrieb Gary Gregory: +1 to removing the ant build. Gary The ant build files were generated using the maven-ant-plugin. The whole stuff looks pretty complicated, and I do not like the way it handles dependencies either. To make it work on my local machine I also had to

Re: [VOTE] Release Commons Configuration 1.7 based on RC1

2011-08-28 Thread Gary Gregory
+1 to removing the ant build. Gary On Aug 28, 2011, at 13:46, Phil Steitz wrote: > On 8/28/11 3:51 AM, Oliver Heger wrote: >> This is a vote to release Apache Commons Configuration 1.7 based >> on the first RC. >> >> Tag: >> http://svn.apache.org/repos/asf/commons/proper/configuration/tags/CONF

Re: [VOTE] Release Commons Configuration 1.7 based on RC1

2011-08-28 Thread Gary Gregory
What about simply bumping the reqs to java 5? Gary On Aug 28, 2011, at 13:46, Phil Steitz wrote: > On 8/28/11 3:51 AM, Oliver Heger wrote: >> This is a vote to release Apache Commons Configuration 1.7 based >> on the first RC. >> >> Tag: >> http://svn.apache.org/repos/asf/commons/proper/configu

Re: [VOTE] Release Commons Configuration 1.7 based on RC1

2011-08-28 Thread Phil Steitz
On 8/28/11 3:51 AM, Oliver Heger wrote: > This is a vote to release Apache Commons Configuration 1.7 based > on the first RC. > > Tag: > http://svn.apache.org/repos/asf/commons/proper/configuration/tags/CONFIGURATION_1_7RC1/ > > Distributions: http://people.apache.org/~oheger/configuration-1.7rc1/

Re: [MATH] Javadoc for vector methods

2011-08-28 Thread Phil Steitz
On 8/24/11 6:20 AM, sebb wrote: > The UnmodifiableVector class contains the following method: > > /** {@inheritDoc} */ > public RealVector add(RealVector w) { > return v.add(w); > } > > This looks like it would update the vector. > It is only by tracing the code

Re: [VOTE] Release Commons Configuration 1.7 based on RC1

2011-08-28 Thread Gary Gregory
The Javadocs links to the JRE are broken: [ERROR] Error fetching link: http://java.sun.com/j2se/1.4.2/docs/api/package-list. Ignored it. The URL to use is: http://download.oracle.com/javase/1.4.2/docs/api/ Not a blocker, but not pretty either. It makes the Javadoc less convenient. Gary On Sun

Re: [VOTE] Release Commons Configuration 1.7 based on RC1

2011-08-28 Thread Oliver Heger
Am 28.08.2011 13:15, schrieb Luc Maisonobe: Le 28/08/2011 12:51, Oliver Heger a écrit : This is a vote to release Apache Commons Configuration 1.7 based on the first RC. Tag: http://svn.apache.org/repos/asf/commons/proper/configuration/tags/CONFIGURATION_1_7RC1/ Distributions: http://people.

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

2011-08-28 Thread Continuum@vmbuild
Online report : http://vmbuild.apache.org/continuum/buildResult.action?buildId=11830&projectId=97 Build statistics: State: Failed Previous State: Ok Started at: Sun 28 Aug 2011 13:20:55 + Finished at: Sun 28 Aug 2011 13:21:30 + Total time: 34s Build Trigger: Schedule Build N

Re: [VOTE] Release Commons Configuration 1.7 based on RC1

2011-08-28 Thread Luc Maisonobe
Le 28/08/2011 12:51, Oliver Heger a écrit : This is a vote to release Apache Commons Configuration 1.7 based on the first RC. Tag: http://svn.apache.org/repos/asf/commons/proper/configuration/tags/CONFIGURATION_1_7RC1/ Distributions: http://people.apache.org/~oheger/configuration-1.7rc1/ Mave

[jcs] Mailing list page

2011-08-28 Thread Thomas Vandahl
Hi folks, On the JCS site, the mailing list page still points to the old Jakarta lists. I saw that a Mailing List page can be generated for a commons component using some maven plugin. How would I add the pointers to the old mailing lists to such a page? Bye, Thomas.

[VOTE] Release Commons Configuration 1.7 based on RC1

2011-08-28 Thread Oliver Heger
This is a vote to release Apache Commons Configuration 1.7 based on the first RC. Tag: http://svn.apache.org/repos/asf/commons/proper/configuration/tags/CONFIGURATION_1_7RC1/ Distributions: http://people.apache.org/~oheger/configuration-1.7rc1/ Maven artifacts: http://people.apache.org/~ohe

Re: svn commit: r1162429 - /commons/proper/configuration/tags/CONFIGURATION_1_7RC1/

2011-08-28 Thread Oliver Heger
Am 27.08.2011 22:46, schrieb Ralph Goers: I guess you're not using the Maven release plugin? Which instructions do you follow? Just interested in case I ever need to do it. Ralph I followed the instructions in [1]. In the section "Create the Release Candidate Website" there is a script whic

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

2011-08-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