[bcel] Backwards Incompatible Change to Visitor

2011-08-17 Thread Stefan Bodewig
Hi, with svn revision 1158060 the bcel.generic.Visitor interface has become package private, breaking the Gump builds of Xalan XSLTC, commons-javaflow and likely other downstream code. Has this change been intentional? Stefan

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

2011-08-17 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-email has an issue affecting its community integration. This

Re: [bcel] Backwards Incompatible Change to Visitor

2011-08-17 Thread Torsten Curdt
On Wed, Aug 17, 2011 at 8:06 AM, Stefan Bodewig bode...@apache.org wrote: Hi, with svn revision 1158060 the bcel.generic.Visitor interface has become package private, breaking the Gump builds of Xalan XSLTC, commons-javaflow and likely other downstream code. Gump is so cool :) cheers,

Re: [Math] iterator and sparseIterator in RealVector hierarchy

2011-08-17 Thread Arne Ploese
Ted, please just take your code and move IteratorEntry sparseIterator(); from RealVector to SparseRealvector. Look then at the compiler errors, that are in most cases misuses of sparseIterator(). By the way most(all?) functions in CM return an array (dense) impementation as return type. You

Re: [Math] iterator and sparseIterator in RealVector hierarchy

2011-08-17 Thread Arne Ploese
Currently sparseIterator is only used in RealVector, no matrix class will be affected, because there is no sparseIterator. Search you sources for sparseIterator ? Arne Am Dienstag, den 16.08.2011, 14:09 -0700 schrieb Ted Dunning: Here is an example from the perspective of somebody adding a new

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

2011-08-17 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-javaflow has an issue affecting its community integration. This

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

2011-08-17 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: [Math] iterator and sparseIterator in RealVector hierarchy

2011-08-17 Thread Gilles Sadowski
On Tue, Aug 16, 2011 at 02:09:03PM -0700, Ted Dunning wrote: Here is an example from the perspective of somebody adding a new kind of matrix. Take the two kinds of matrix as RandomTrinaryMatrix(rows, columns, p) that has elements that are -1, 0 or 1. 1 and -1 have equal probabilities of

Re: svn commit: r1158504 - /commons/trunks-proper/

2011-08-17 Thread sebb
On 17 August 2011 05:38, Stefan Bodewig bode...@apache.org wrote: On 2011-08-17, bay...@apache.org wrote: Propchange: commons/trunks-proper/ -- --- svn:externals (original) +++ svn:externals Wed Aug 17 04:25:55 2011

Re: [compress] close() and archives/streams in an invalid state

2011-08-17 Thread sebb
On 17 August 2011 06:18, Stefan Bodewig bode...@apache.org wrote: On 2011-08-17, sebb wrote: On 17 August 2011 03:42, Stefan Bodewig bode...@apache.org wrote: On 2011-08-15, sebb wrote: For input, there might be a use case for leaving the stream open, in case some kind of recovery is

Re: [compress] close() and archives/streams in an invalid state

2011-08-17 Thread Stefan Bodewig
On 2011-08-17, Honton, Charles wrote: Why guard against closing System.in? If the client application needs that sort of functionality, it should wrap the incoming stream in a proxy that doesn't delegate the close method to the underlying stream. You and I agree here - there even has been a

Re: [codec] Encoder / Decoder interface

2011-08-17 Thread Matthew Pocock
Hi, Before I start, I'd love to see a binary compatible codec release with the Beider Morse code in, and for generics to be dealt with in a later release. What I'm not quite sure about is why introducing generics will necessarily cause breaking changes. It seems to me that the Encoder/Decoder

Re: [VOTE][DAEMON] release 1.0.6 and 1.0.7 Maven artifacts

2011-08-17 Thread Luc Maisonobe
Le 15/08/2011 20:03, sebb a écrit : Just in case anyone wants to use Maven to download the Java part of Commons Daemon (this has been requested in the past), I thought it would be useful to create and upload the Maven artifacts to the Nexus staging repo. The uploads contain source, so although

Re: [codec] Encoder / Decoder interface

2011-08-17 Thread Stephen Colebourne
On 17 August 2011 13:44, Matthew Pocock turingatemyhams...@gmail.com wrote: It seems to me that the Encoder/Decoder interfaces are screaming out to be generified, and the current sub-interfaces should be removed unless there's a compelling reason for them e.g. if they add extra methods. It is

Re: [codec] Encoder / Decoder interface

2011-08-17 Thread Matthew Pocock
On 17 August 2011 13:58, Stephen Colebourne scolebou...@joda.org wrote: The Object encode(Object) approach is still valid if the primary use case of the interface is for frameworks. In a framework, objects are generally treated as of type Object, so the API is fine. User code should use

Re: [VOTE][DAEMON] release 1.0.6 and 1.0.7 Maven artifacts

2011-08-17 Thread sebb
On 17 August 2011 13:50, Luc Maisonobe luc.maison...@free.fr wrote: Le 15/08/2011 20:03, sebb a écrit : Just in case anyone wants to use Maven to download the Java part of Commons Daemon (this has been requested in the past), I thought it would be useful to create and upload the Maven

Re: [codec] Encoder / Decoder interface

2011-08-17 Thread Gary Gregory
Hi Matthew, On Wed, Aug 17, 2011 at 8:44 AM, Matthew Pocock turingatemyhams...@gmail.com wrote: Hi, Before I start, I'd love to see a binary compatible codec release with the Beider Morse code in, and for generics to be dealt with in a later release. I think this is where we are going,

Re: [codec] Encoder / Decoder interface

2011-08-17 Thread Gary Gregory
Hi All: On Wed, Aug 17, 2011 at 8:58 AM, Stephen Colebourne scolebou...@joda.orgwrote: On 17 August 2011 13:44, Matthew Pocock turingatemyhams...@gmail.com wrote: It seems to me that the Encoder/Decoder interfaces are screaming out to be generified, and the current sub-interfaces should

Re: [codec] Encoder / Decoder interface

2011-08-17 Thread sebb
On 17 August 2011 13:58, Stephen Colebourne scolebou...@joda.org wrote: On 17 August 2011 13:44, Matthew Pocock turingatemyhams...@gmail.com wrote: It seems to me that the Encoder/Decoder interfaces are screaming out to be generified, and the current sub-interfaces should be removed unless

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

2011-08-17 Thread Continuum@vmbuild
Online report : http://vmbuild.apache.org/continuum/buildResult.action?buildId=11377projectId=64 Build statistics: State: Failed Previous State: Ok Started at: Wed 17 Aug 2011 14:22:43 + Finished at: Wed 17 Aug 2011 14:23:04 + Total time: 21s Build Trigger: Schedule Build

Re: [Math] iterator and sparseIterator in RealVector hierarchy

2011-08-17 Thread Ted Dunning
On Wed, Aug 17, 2011 at 4:44 AM, Gilles Sadowski gil...@harfang.homelinux.org wrote: It would be very nice if the implementor of this matrix could extend an abstract matrix and over-ride get() to generate a value and set() to throw an unsupported operation exception. Do you mean that

Re: [Math] iterator and sparseIterator in RealVector hierarchy

2011-08-17 Thread Ted Dunning
Arne, Please read the thread again. I am providing an example of how I think things *should* be. The point of doing so is that things are not that way now. Telling me that they are not that way is pretty redundant. On Wed, Aug 17, 2011 at 2:37 AM, Arne Ploese aplo...@gmx.de wrote: Currently

[POOL] @inheritDoc tags for @throws clauses in LinkedBlockingDeque

2011-08-17 Thread sebb
Eclipse complains about all the @inheritDoc tags in LinkedBlockingDeque. AFAICT, @inheritDoc is allowed in @throws, but only if the method has something to inherit from, i.e.. it overrides a super-class method or implements an interface (Java 1.6+) It does not inherit from the Throwable, which

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread Gary Gregory
Hi All: I am not sure if I am building correctly, but here is what I found. Some build instructions in the readme.txt file would help. Downloaded source zip from http://people.apache.org/~rgoers/commons-vfs/staged/ From the root I ran mvn site which did not work. Fine, starting to poke around.

Re: [POOL] @inheritDoc tags for @throws clauses in LinkedBlockingDeque

2011-08-17 Thread Gary Gregory
+1, who's on first again? Gary On Wed, Aug 17, 2011 at 11:09 AM, sebb seb...@gmail.com wrote: Eclipse complains about all the @inheritDoc tags in LinkedBlockingDeque. AFAICT, @inheritDoc is allowed in @throws, but only if the method has something to inherit from, i.e.. it overrides a

Re: [POOL] @inheritDoc tags for @throws clauses in LinkedBlockingDeque

2011-08-17 Thread sebb
On 17 August 2011 16:09, sebb seb...@gmail.com wrote: Eclipse complains about all the @inheritDoc tags in LinkedBlockingDeque. AFAICT, @inheritDoc is allowed in @throws, but only if the method has something to inherit from, i.e.. it overrides a super-class method or implements an interface

Re: [Math] iterator and sparseIterator in RealVector hierarchy

2011-08-17 Thread Arne Ploese
Am Mittwoch, den 17.08.2011, 07:25 -0700 schrieb Ted Dunning: Arne, Please read the thread again. I am providing an example of how I think things *should* be. OK. if I understand you right: isSparse() should be added to RealVector and the interface SparseRealVector can be dropped? The

Re: [Math] iterator and sparseIterator in RealVector hierarchy

2011-08-17 Thread Ted Dunning
I think that all vectors and matrices should be able to answer the question about whether they are sparse and they should support sparse iterators, defaulting to the normal iterators in the general case. So yes to the first question. This allows the application programmer to be much less

[math] StorelessCovariance

2011-08-17 Thread Patrick Meyer
I am workin on the StorelessCovariance per jira MATH-449. However, I'm having a hard time using subversion via Netbeans. I have successfully created the new classes and a JUnit test. However, when I run the test I get the following message, caused an ERORR: Absent Code attribute in method

Re: [math] StorelessCovariance

2011-08-17 Thread Phil Steitz
On 8/17/11 9:15 AM, Patrick Meyer wrote: caused an ERORR: Absent Code attribute in method that is not native or abstract in class file org/apache/commons/math/TestUtils First of all, THANKS for working on this! This may not be what you want to hear or the fashionable response, but I personally

[math] StorelessCovariance

2011-08-17 Thread Patrick
I am workin on the StorelessCovariance per jira MATH-449. However, I'm having a hard time using subversion via Netbeans. I have successfully created the new classes and a JUnit test. However, when I run the test I get the following message, caused an ERORR: Absent Code attribute in method

Re: [chain] Apache Chain v2 Proof of Concept

2011-08-17 Thread Elijah Zupancic
Hi Matt and Simo, I've attached the patch to the bug and fixed the issues mentioned with faces. What other steps do I need to do now? Thanks, -Elijah On Mon, Aug 15, 2011 at 6:22 AM, Matt Benson gudnabr...@gmail.com wrote: Hi, Elijah--  I am neither a develop nor even a user of chain, so my

Re: [chain] Apache Chain v2 Proof of Concept

2011-08-17 Thread Matt Benson
Be patient, while not being so patient that you allow us to forget it. Matt On Wed, Aug 17, 2011 at 12:01 PM, Elijah Zupancic eli...@zupancic.name wrote: Hi Matt and Simo, I've attached the patch to the bug and fixed the issues mentioned with faces. What other steps do I need to do now?

Re: [chain] Apache Chain v2 Proof of Concept

2011-08-17 Thread Matt Benson
BTW, please don't take the previous response as indicating any negativity on my part. Feel free to prod us as long as possible, at reasonable frequency. Matt On Wed, Aug 17, 2011 at 12:04 PM, Matt Benson gudnabr...@gmail.com wrote: Be patient, while not being so patient that you allow us to

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

2011-08-17 Thread Continuum@vmbuild
Online report : http://vmbuild.apache.org/continuum/buildResult.action?buildId=11393projectId=98 Build statistics: State: Failed Previous State: Ok Started at: Wed 17 Aug 2011 17:22:07 + Finished at: Wed 17 Aug 2011 17:22:15 + Total time: 7s Build Trigger: Schedule Build

Re: [math] StorelessCovariance

2011-08-17 Thread Luc Maisonobe
Hi Patrick, Le 17/08/2011 18:15, Patrick Meyer a écrit : I am workin on the StorelessCovariance per jira MATH-449. However, I'm having a hard time using subversion via Netbeans. I have successfully created the new classes and a JUnit test. However, when I run the test I get the following

Re: [Math] iterator and sparseIterator in RealVector hierarchy

2011-08-17 Thread Arne Ploese
So what exactly is the meaning of isSparse? * the vector at hand implements some kind of sparse storage? I.E: OpenMapRealVector or * the vector is actually sparsely filled (then what is sparse anyway 10%, 50%, 90%?) in this case a SparserelVector interface is useless for the compiler. My

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread ralph.goers @dslextreme.com
What do you mean It did not work? This is a multi-project site so in general mvn site is useless. You have to run mvn site:stage-deply -DstagingSiteURL=file url where I want the site to go. I suppose I could add that to the readme, but it is documented pretty well on the maven site plugin web

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread ralph.goers @dslextreme.com
Oh - and if for some non-obvious reason you want to create the distribution jars when you do the build you can run mvn -P apache-release clean install. On Wed, Aug 17, 2011 at 11:35 AM, ralph.goers @dslextreme.com ralph.go...@dslextreme.com wrote: Oops. That should be mvn site:stage-deploy.

Re: [Math] iterator and sparseIterator in RealVector hierarchy

2011-08-17 Thread Ted Dunning
I would think neither. I think it should mean that the sparseIterator will be enough faster than the dense iterator to make it worth using. The indication doesn't have to be be crisp or even always quite correct. Thus, a densely filled OpenMapReal might just return true because that usage is

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread sebb
On 17 August 2011 19:37, ralph.goers @dslextreme.com ralph.go...@dslextreme.com wrote: Oh - and if for some non-obvious reason you want to create the distribution jars when you do the build you can run mvn -P apache-release clean install. I though commons normally use their own release

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread ralph.goers @dslextreme.com
The Maven release plugin uses the apache-release profile which is set up in the apache parent pom. Ralph On Wed, Aug 17, 2011 at 11:49 AM, sebb seb...@gmail.com wrote: On 17 August 2011 19:37, ralph.goers @dslextreme.com ralph.go...@dslextreme.com wrote: Oh - and if for some non-obvious

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread ralph.goers @dslextreme.com
Commons parent has both a release profile and an apache-release profile. The apache-release profile is used by the release plugin as it is set up for the ASF. I'm not sure what value-add (or value loss) the release profile provides. On Wed, Aug 17, 2011 at 12:12 PM, ralph.goers @dslextreme.com

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread Phil Steitz
On 8/17/11 11:32 AM, ralph.goers @dslextreme.com wrote: What do you mean It did not work? This is a multi-project site so in general mvn site is useless. You have to run mvn site:stage-deply -DstagingSiteURL=file url where I want the site to go. I suppose I could add that to the readme, but

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread ralph.goers @dslextreme.com
The sandbox question I can't answer very well. The sandbox stuff was there long before I arrived to work on VFS, although I rewrote the webdav stuff and moved it to core. The only real description is on the web site under File Systems where it says they under in development (not by me :-) ). None

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread Oliver Heger
Build is now successful under Windows 7 with Java 1.5 and 1.6. Artifacts and site look good. The only thing I am missing are md5 files. Are they required (other components used to have them)? If not, you can count my +1. Oliver Am 17.08.2011 07:44, schrieb Ralph Goers: This is a vote to

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread Phil Steitz
On 8/17/11 12:45 PM, Oliver Heger wrote: Build is now successful under Windows 7 with Java 1.5 and 1.6. Artifacts and site look good. The only thing I am missing are md5 files. Are they required (other components used to have them)? If not, you can count my +1. The md5s are required and we

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread ralph.goers @dslextreme.com
Nope. That is my mistake. Maven generated them when it uploaded them to the Nexus staging repo. But I deleted that since we don't deliver them from there. I then uploaded the artifacts from where they were built on my machine to the directory on people.a.o rather than grabbing them from Nexus,

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread Phil Steitz
On 8/17/11 12:43 PM, ralph.goers @dslextreme.com wrote: The sandbox question I can't answer very well. The sandbox stuff was there long before I arrived to work on VFS, although I rewrote the webdav stuff and moved it to core. The only real description is on the web site under File Systems

[lang?] Converting an array to an Iterable

2011-08-17 Thread Oliver Heger
Hi, recently I stumbled over the use case to obtain an Iterable for an array. I was pretty sure that there should already be a solution for this problem, but could not find anything in the JDK or in [lang]. Would this be an addition to [lang]? Maybe in ArrayUtils? Oliver

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread ralph.goers @dslextreme.com
OK. I will take care of this, the MD5 issue and do something with the README in a few hours after I get home from work and send out another release vote. In the meantime, if there are any other problems that should be corrected I'd appreciate the feedback. Ralph On Wed, Aug 17, 2011 at 1:05 PM,

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread Luc Maisonobe
Le 17/08/2011 22:13, ralph.goers @dslextreme.com a écrit : OK. I will take care of this, the MD5 issue and do something with the README in a few hours after I get home from work and send out another release vote. Was this vote offocially cancelled ? Luc In the meantime, if there are any

Re: [lang?] Converting an array to an Iterable

2011-08-17 Thread Dave Brosius
What would this do that java.util.Arrays.asList does not? - Original Message -From: quot;Oliver Hegerquot; ;oliver.he...@oliver-heger.de

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread ralph.goers @dslextreme.com
Sorry, yes. Ralph On Wed, Aug 17, 2011 at 1:33 PM, Luc Maisonobe luc.maison...@free.frwrote: Le 17/08/2011 22:13, ralph.goers @dslextreme.com a écrit : OK. I will take care of this, the MD5 issue and do something with the README in a few hours after I get home from work and send out

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread sebb
On 17 August 2011 20:43, ralph.goers @dslextreme.com ralph.go...@dslextreme.com wrote: The sandbox question I can't answer very well. The sandbox stuff was there long before I arrived to work on VFS, although I rewrote the webdav stuff and moved it to core. The only real description is on the

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread sebb
On 17 August 2011 20:55, ralph.goers @dslextreme.com ralph.go...@dslextreme.com wrote: Nope. That is my mistake.  Maven generated them when it uploaded them to the Nexus staging repo. But I deleted that since we don't deliver them from there. I then uploaded the artifacts from where they were

[Math] New method: addToEntry in RealVector

2011-08-17 Thread Gilles Sadowski
Hi. 1. Is it OK to add an addToEntry method to RealVector? [There is one in AbstractRealMatrix.] Do I need to open a JIRA issue for this? 2. Are we going to remove the RealVector interface in favour of keeping only an abstract concrete class (AbstractRealVector) at the top of the

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread ralph.goers @dslextreme.com
I didn't check, but for some reason I assumed that once I do a close that I wouldn't be able to delete anything. But you are correct. I can do that so I will as it is easier. Ralph On Wed, Aug 17, 2011 at 2:51 PM, sebb seb...@gmail.com wrote: On 17 August 2011 20:55, ralph.goers

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread ralph.goers @dslextreme.com
I'd prefer to not remove it from the modules list as that will also remove it from the web site. Ralph On Wed, Aug 17, 2011 at 2:46 PM, sebb seb...@gmail.com wrote: On 17 August 2011 20:43, ralph.goers @dslextreme.com ralph.go...@dslextreme.com wrote: The sandbox question I can't answer

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread sebb
On 17 August 2011 23:17, ralph.goers @dslextreme.com ralph.go...@dslextreme.com wrote: I'd prefer to not remove it from the modules list as that will also remove it from the web site. But then surely source archive builds will fail? Ralph On Wed, Aug 17, 2011 at 2:46 PM, sebb

Re: [Math] New method: addToEntry in RealVector

2011-08-17 Thread Phil Steitz
On 8/17/11 3:14 PM, Gilles Sadowski wrote: Hi. 1. Is it OK to add an addToEntry method to RealVector? [There is one in AbstractRealMatrix.] Do I need to open a JIRA issue for this? 2. Are we going to remove the RealVector interface in favour of keeping only an abstract concrete class

Re: [Math] iterator and sparseIterator in RealVector hierarchy

2011-08-17 Thread Greg Sterijevski
On symmetrics, diagonal, banded and so on, I disagree-as I have made clear in the past. In the case of White standard errors or panel regressions, you typically have long strings of multiplication by diagonals and symmetrics, sandwich products and so forth. There are enough of these types of

Re: [Math] iterator and sparseIterator in RealVector hierarchy

2011-08-17 Thread Ted Dunning
On Wed, Aug 17, 2011 at 4:24 PM, Greg Sterijevski gsterijev...@gmail.comwrote: On symmetrics, diagonal, banded and so on, I disagree-as I have made clear in the past. In the case of White standard errors or panel regressions, you typically have long strings of multiplication by diagonals and

Re: [Math] New method: addToEntry in RealVector

2011-08-17 Thread Ted Dunning
Are you going to add addAndScale and all the other gazillion common mutators as well? Or should there just be a functional style interface where you say A.assign(Functions.plus(3.0)) to add 3 to all elements of a matrix or vector? That would then allow A.assign(Functions.ABS) or

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread Ralph Goers
On Aug 17, 2011, at 3:27 PM, sebb wrote: On 17 August 2011 23:17, ralph.goers @dslextreme.com ralph.go...@dslextreme.com wrote: I'd prefer to not remove it from the modules list as that will also remove it from the web site. But then surely source archive builds will fail? Yeah. I'll

Re: [Vote] Release Commons VFS 2.0

2011-08-17 Thread sebb
On 18 August 2011 01:09, Ralph Goers ralph.go...@dslextreme.com wrote: On Aug 17, 2011, at 3:27 PM, sebb wrote: On 17 August 2011 23:17, ralph.goers @dslextreme.com ralph.go...@dslextreme.com wrote: I'd prefer to not remove it from the modules list as that will also remove it from the web

Re: [math] StorelessCovariance

2011-08-17 Thread Greg Sterijevski
I am building in Netbeans and I believe that Luc is correct. I initially had problems until I included the junit.jar. (junit-4.8.2.jar) PS What is your approach to the covariance matrix? Are you building a sum of squares matrix or keeping updates of the mean, ... etc? On Wed, Aug 17, 2011 at

Re: [Math] New method: addToEntry in RealVector

2011-08-17 Thread Greg Sterijevski
Shocking as this may seem! ;-) I like Ted's suggestion. Very clean, an appropriate use of OO and something for which the penalty is not great, but the benefit humongous! +1 for functional/functor approach. On Wed, Aug 17, 2011 at 6:44 PM, Ted Dunning ted.dunn...@gmail.com wrote: Are you going

Re: [math] StorelessCovariance

2011-08-17 Thread Patrick Meyer
OK, after fidgeting with NetBeans for too long without results, I went with Phil's suggestion and just used subversion at the command prompt. It was much easier than trying to configure NetBeans. I uploaded the patch this evening. It includes two new classes StorelessCovariance.java and

Re: [math] StorelessCovariance

2011-08-17 Thread Ted Dunning
NetBeans is kind of wasting away for lack of attention. IntelliJ generally gets these things exactly correct. SVN, git and mvn are all mother tongues for it. There is an excellent community edition and Apache committers can get a full version. On Wed, Aug 17, 2011 at 8:09 PM, Patrick Meyer

Re: [Math] New method: addToEntry in RealVector

2011-08-17 Thread Ted Dunning
Credit where it is due: this style of API was a major characteristic of Colt and Mahout inherited this style (to our benefit). On Wed, Aug 17, 2011 at 6:41 PM, Greg Sterijevski gsterijev...@gmail.comwrote: Shocking as this may seem! ;-) I like Ted's suggestion. Very clean, an appropriate use