2011/9/9 sebb :
> On 9 September 2011 21:50, Olivier Lamy wrote:
>> 2011/9/9 sebb :
>>> On 9 September 2011 14:53, Olivier Lamy wrote:
Maybe possible to add something for folks using git svn.
An other profile activated if .git is present and change the scm
provider used for bu
Okay, I have begun nibbling on the doc. I will push a few changes I made in
connection to doing no intercept regression in SimpleRegression.
On Sun, Aug 28, 2011 at 10:17 PM, Phil Steitz wrote:
> On 8/28/11 7:24 PM, Greg Sterijevski wrote:
> > Hello All,
> >
> > What tool is used to create the d
Added short comment. -Greg
On Tue, Aug 30, 2011 at 5:37 AM, sebb wrote:
> On 29 August 2011 07:11, Greg Sterijevski wrote:
> > My apologies, I was looking at the original c code and neglected to
> notice
> > the cast.
>
> Perhaps add a comment to the cast to make it clearer?
>
> > On Mon, Aug 2
On 2011-09-09, Oliver Heger wrote:
> After the version number in pom.xml was changed to 1.8-SNAPSHOT the
> gump build fails. IIUC, it still searches for a jar ending in
> 1.7-SNAPSHOT.
> I had a look at the gump descriptor in commons-proper.xml, but I did
> not find a place where the version numb
On Fri, Sep 9, 2011 at 1:54 PM, Gilles Sadowski <
gil...@harfang.homelinux.org> wrote:
> > > The exceptions thrown should not be sub-classes of
> NumberIsTooSmallException
> > > because it is a matrix that is the problem and matrices are not numbers
> and
> > > do not have a total order.
>
> Of co
On Fri, Sep 09, 2011 at 01:03:22PM -0700, Phil Steitz wrote:
> On 9/9/11 12:13 PM, Sébastien Brisard wrote:
> > Hi,
> > I was wondering if anyone of you had the chance to look at the new
> > piece of code submitted (JIRA MATH-655).
> > Thanks for your comments!
>
> Sorry to be slow on this. I wou
These are very good suggestions. I am a bit reticent to mess with the pom. I
think I will use Phil's advice and install maven2.
Thank you all,
-Greg
On Fri, Sep 9, 2011 at 11:42 AM, sebb wrote:
> On 9 September 2011 13:56, sebb wrote:
> > Also, might be worth seeing if Commons Parent 22-SNAPS
I honestly still haven't figured out how our Context should look
alike, better if I go sleep (it's almost midnight here in Italy :P)
and thinking about it :)
Good night, I'll come back writing tomorrow!
Simo
http://people.apache.org/~simonetripodi/
http://www.99soft.org/
On Fri, Sep 9, 2011 at
On 9 September 2011 21:50, Olivier Lamy wrote:
> 2011/9/9 sebb :
>> On 9 September 2011 14:53, Olivier Lamy wrote:
>>> Maybe possible to add something for folks using git svn.
>>>
>>> An other profile activated if .git is present and change the scm
>>> provider used for buildnumber (see [1] ) :
>
On 9 September 2011 19:58, Phil Steitz wrote:
> On 9/9/11 12:35 AM, Simone Tripodi wrote:
>> Good morning guys,
>> I just did an experiment on my local checkout of the parent pom,
>> adding the buildnumber plugin, in order to have a new
>> `Implementation-Build` manifest entry in the jars, where r
Definitely interesting. I think this might be a special case though;
ClassToInstanceMap is dedicated to class instances which is probably
why they extended Map so that it has extra guarantees. I don't know if
such a pattern is advisable for a regular key/value pair. What are
your thoughts?
On Fri,
indeed, the retrieve method would allow users assigning retrieved
object to all T that extend V, like the ClassToInstanceMap, take a
look at the method signatures[1]
[1] http://s.apache.org/Mno
http://people.apache.org/~simonetripodi/
http://www.99soft.org/
On Fri, Sep 9, 2011 at 11:02 PM, Pau
The purpose of Generics is to provide type safety with the implicit
casts. Implicit casts because of typing shouldn't cause a
ClassCastException. That would break an important principle behind
using gnerics. Are you sure Guava is doing what you're proposing?
Typing should always be safe; I would be
> > [...]
> > ALPHA("alpha"), /* keep */
> > BETA("beta"), /* keep */
> > NOT_POSITIVE_COLUMNDIMENSION("invalid column dimension: {0} (must be
> > positive)"),
> > -NOT_POSITIVE_DEFINITE_MATRIX("not positive definite matrix"),
> > -NON_POSITIVE_DEFINITE_MATRIX("not positive
On Fri, Sep 09, 2011 at 11:26:02AM -0700, Phil Steitz wrote:
> On 9/9/11 9:27 AM, Ted Dunning wrote:
> > I don't think that is correct.
> >
> > It is not the case that there was some element in the input that was too
> > small. For instance, this matrix is positive definite:
> >
> > 3 -3
2011/9/9 sebb :
> On 9 September 2011 14:53, Olivier Lamy wrote:
>> Maybe possible to add something for folks using git svn.
>>
>> An other profile activated if .git is present and change the scm
>> provider used for buildnumber (see [1] ) :
>
> Just wondering - why is svnjava not the default?
th
Hi Paul,
the type inference becomes more interesting and useful if you think to
more complicated context instances, take as sample the Guava's
ClassToInstanceMap[1] where values extend a specific base type.
the in the `retrieve` method reduces anyway the number
of errors, given an hypothetically
On Fri, Sep 9, 2011 at 3:15 PM, Elijah Zupancic wrote:
> Specifying Object for V would be the most likely use case.
>
> On Fri, Sep 9, 2011 at 1:12 PM, Paul Benedict wrote:
>> On Fri, Sep 9, 2011 at 3:06 PM, Simone Tripodi
>> wrote:
>>> Hi Paul,
>>> the use of that method is to automatically in
Specifying Object for V would be the most likely use case.
On Fri, Sep 9, 2011 at 1:12 PM, Paul Benedict wrote:
> On Fri, Sep 9, 2011 at 3:06 PM, Simone Tripodi
> wrote:
>> Hi Paul,
>> the use of that method is to automatically infer the assigned type,
>> instead of writing
>>
>> MyPojo myPo
On Fri, Sep 9, 2011 at 3:06 PM, Simone Tripodi wrote:
> Hi Paul,
> the use of that method is to automatically infer the assigned type,
> instead of writing
>
> MyPojo myPojo = (MyPojo) context.get( "myKey" );
>
> the retrieve method allows to
>
> MyPojo myPojo = context.retrieve( "myKey" );
Hi Paul,
the use of that method is to automatically infer the assigned type,
instead of writing
MyPojo myPojo = (MyPojo) context.get( "myKey" );
the retrieve method allows to
MyPojo myPojo = context.retrieve( "myKey" );
both throw ClassCastException if types are not assignable, but with
On 9/9/11 12:13 PM, Sébastien Brisard wrote:
> Hi,
> I was wondering if anyone of you had the chance to look at the new
> piece of code submitted (JIRA MATH-655).
> Thanks for your comments!
Sorry to be slow on this. I would say go ahead and commit the last
patch and we can talk about patching fr
In my personal use of Chain, I am using it as . So
typing as Context is good. Though, do we need type T? Shouldn't
retrieve(K) just return V?
On Fri, Sep 9, 2011 at 2:21 PM, Simone Tripodi wrote:
> here I am!
> sorry I'm late but just terminated to have dinner :P
> I think that specifying the ca
here I am!
sorry I'm late but just terminated to have dinner :P
I think that specifying the can be omitted, and
Paul's suggestion is the way to go, the code is more readable.
The last added method can be improved, putting the K as argument
instead of String and as a strict check for output
argum
I go with what I said. Extending from Object is sulfurous since all
type parameters extend at least from Object.
On Fri, Sep 9, 2011 at 1:56 PM, Elijah Zupancic wrote:
> Paul,
>
> You may be right. Which one is more idiomatic?
>
> Thanks,
> -Elijah
>
> On Fri, Sep 9, 2011 at 11:51 AM, Paul Benedi
Hi,
I was wondering if anyone of you had the chance to look at the new
piece of code submitted (JIRA MATH-655).
Thanks for your comments!
Sébastien
-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional comman
good point :)
let me investigate, thanks for the feedbacks!!!
Simo
http://people.apache.org/~simonetripodi/
http://www.99soft.org/
On Fri, Sep 9, 2011 at 8:58 PM, Phil Steitz wrote:
> On 9/9/11 12:35 AM, Simone Tripodi wrote:
>> Good morning guys,
>> I just did an experiment on my local checko
On 9/9/11 8:44 AM, er...@apache.org wrote:
> Author: erans
> Date: Fri Sep 9 15:44:57 2011
> New Revision: 1167252
>
> URL: http://svn.apache.org/viewvc?rev=1167252&view=rev
> Log:
> NonPositiveDefiniteMatrixException": Changed base class, and modified message
> so
> that it is (a little) less mi
On 9/9/11 12:35 AM, Simone Tripodi wrote:
> Good morning guys,
> I just did an experiment on my local checkout of the parent pom,
> adding the buildnumber plugin, in order to have a new
> `Implementation-Build` manifest entry in the jars, where reported the
> revision number and the timestamp.
> I
Paul,
You may be right. Which one is more idiomatic?
Thanks,
-Elijah
On Fri, Sep 9, 2011 at 11:51 AM, Paul Benedict wrote:
> On Fri, Sep 9, 2011 at 1:47 PM, Elijah Zupancic wrote:
>> Thanks for your comments Nail.
>>
>> I think that I've come around to see your point after sleeping on it.
>> W
On Fri, Sep 9, 2011 at 1:47 PM, Elijah Zupancic wrote:
> Thanks for your comments Nail.
>
> I think that I've come around to see your point after sleeping on it.
> What do you think about this:
>
> Context.java - would be defined as so:
>
> public interface Context extends Map
Isn't that identica
Thanks for your comments Nail.
I think that I've come around to see your point after sleeping on it.
What do you think about this:
Context.java - would be defined as so:
public interface Context extends Map
Then ContextBase.java would be defined like so:
public class ContextBase extends Concur
After the version number in pom.xml was changed to 1.8-SNAPSHOT the gump
build fails. IIUC, it still searches for a jar ending in 1.7-SNAPSHOT.
I had a look at the gump descriptor in commons-proper.xml, but I did not
find a place where the version number is hard-coded. The project
description
On 9 September 2011 14:53, Olivier Lamy wrote:
> Maybe possible to add something for folks using git svn.
>
> An other profile activated if .git is present and change the scm
> provider used for buildnumber (see [1] ) :
Just wondering - why is svnjava not the default?
It seems to work just as wel
On 9/9/11 9:27 AM, Ted Dunning wrote:
> I don't think that is correct.
>
> It is not the case that there was some element in the input that was too
> small. For instance, this matrix is positive definite:
>
> 3 -31
> 242
> 11 30
>
> While this one is not
>
> 3
On 9 September 2011 13:56, sebb wrote:
> Also, might be worth seeing if Commons Parent 22-SNAPSHOT helps with Maven 3.
> That has an updated version of the site plugin.
>
> Just update the Math pom locally to 22-SNAPSHOT and add the snapshot
> repo to your settings.xml:
>
>
> apache.snaps
I don't think that is correct.
It is not the case that there was some element in the input that was too
small. For instance, this matrix is positive definite:
3 -31
242
11 30
While this one is not
3 -31
232
11 30
The value of the
Actually, I think that the test in the Cholesky decomposition should be
three-pronged:
lt[i] > threshold proceed normally, use sqrt(lt[i])
lt[i] >= -threshold treat as zero. Either return rank-deficient result
if pivoting or
signal that original argument is not
On 9/9/11 7:31 AM, Gilles Sadowski wrote:
> Hi.
>
>>> On Thu, Sep 08, 2011 at 10:27:00AM -0500, Greg Sterijevski wrote:
Could you be contaminating the cross product matrix when you do your
accumulation? I noticed one of the utility classes has methods for doing
safe accumulations. I
seen your svn activity, thanks for reviewing!!!
Simo
http://people.apache.org/~simonetripodi/
http://www.99soft.org/
On Fri, Sep 9, 2011 at 5:21 PM, sebb wrote:
> I've made some minor adjustments, and uploaded the snapshot.
>
> Seems to work fine for me.
> Tested in NET; also works for the ext
I've made some minor adjustments, and uploaded the snapshot.
Seems to work fine for me.
Tested in NET; also works for the extra jars created by Ant so long as
the manifest is updated accordingly.
On 9 September 2011 15:02, Simone Tripodi wrote:
> hi all guys,
> I just committed the r1167170 of t
Hi
You need to use findbugs plugin 2.3 or later with Maven 3. See
https://cwiki.apache.org/MAVEN/maven-3x-plugin-compatibility-matrix.html
On 9/9/11, Greg Sterijevski wrote:
> Hello All,
>
> I am seeing this. My build is on a Mac. Does anyone have any clues?
>
> [ERROR] Failed to execute goal
>
I will try this. The funny thing is that I could swear that I successfully
built a couple of days ago. The build fails after compilation and all tests
run successfully.
On Fri, Sep 9, 2011 at 7:56 AM, sebb wrote:
> Also, might be worth seeing if Commons Parent 22-SNAPSHOT helps with Maven
> 3.
>
Hi.
> >
> > On Thu, Sep 08, 2011 at 10:27:00AM -0500, Greg Sterijevski wrote:
> >> Could you be contaminating the cross product matrix when you do your
> >> accumulation? I noticed one of the utility classes has methods for doing
> >> safe accumulations. I know that this was part of the problem wh
Hi.
> Is the test checked in? I am interested in looking at it.
Thanks for the interest, but it is a unit test for the software which I
work on. I'm afraid that a discussion about this will be fairly OT here.
Basically, I need to compute the covariance matrix, but the model function
is the resul
hi all guys,
I just committed the r1167170 of the parent pom, please review.
Any suggestion/improvement is welcome, feel free to work on it! :)
Since Olivier is also the buildnumber plugin maintainer can more than useful!
Have a nice day, all the best!
Simo
http://people.apache.org/~simonetripodi/
On 9/9/11 6:00 AM, Gilles Sadowski wrote:
> Hi.
>
> On Thu, Sep 08, 2011 at 10:27:00AM -0500, Greg Sterijevski wrote:
>> Could you be contaminating the cross product matrix when you do your
>> accumulation? I noticed one of the utility classes has methods for doing
>> safe accumulations. I know tha
Maybe possible to add something for folks using git svn.
An other profile activated if .git is present and change the scm
provider used for buildnumber (see [1] ) :
providerImplementations : git (hackhish maybe and not tested :-) ).
The git scm provider use : git rev-parse --verify HEAD .
Which
OK,
I also did a little experiment following Olivier's suggestions and it worked.
Just the time to revert to the initial form so I can commit and you
all can see how it works and play with it.
TIA!
Simo
http://people.apache.org/~simonetripodi/
http://www.99soft.org/
On Fri, Sep 9, 2011 at 3:41
On 9 September 2011 14:28, Simone Tripodi wrote:
> @Seb: revision-unknown sounds better indeed
>
> @Olivier: you are always super :) going to move the stuff to the profile
Not sure I agree that the profile is a good idea; it only works for
Subversion (the plugin supports other CMS) and the test r
@Seb: revision-unknown sounds better indeed
@Olivier: you are always super :) going to move the stuff to the profile
WDYT if I commit that stuff and reverting if starts creating issues?
we have Olivier in any way ;)
Simo
http://people.apache.org/~simonetripodi/
http://www.99soft.org/
On Fri
why not having a profile for that ? (folks using git svn or building
from the src distrib).
buildnumber
.svn
org.codehaus.mojo
buildnumber-maven-plugin
blabla setup of the plugin
On 9 September 2011 14:05, Simone Tripodi wrote:
> The plugin supports the offline mode, I configured it to add
>
> Implementation-Build: local-dev; 2011-09-09 09:17:22+0200
Not sure "local-dev" is clear; I would replace it with "revision
unknown" or similar.
> instead of
>
> Implementatio
The plugin supports the offline mode, I configured it to add
Implementation-Build: local-dev; 2011-09-09 09:17:22+0200
instead of
Implementation-Build: r1166864; 2011-09-09 09:17:22+0200
WDYT?
Simo
http://people.apache.org/~simonetripodi/
http://www.99soft.org/
On Fri, Sep 9, 2011 a
Hi.
On Thu, Sep 08, 2011 at 10:27:00AM -0500, Greg Sterijevski wrote:
> Could you be contaminating the cross product matrix when you do your
> accumulation? I noticed one of the utility classes has methods for doing
> safe accumulations. I know that this was part of the problem when I was
> trying
On 9 September 2011 08:35, Simone Tripodi wrote:
> Good morning guys,
> I just did an experiment on my local checkout of the parent pom,
> adding the buildnumber plugin, in order to have a new
> `Implementation-Build` manifest entry in the jars, where reported the
> revision number and the timesta
Also, might be worth seeing if Commons Parent 22-SNAPSHOT helps with Maven 3.
That has an updated version of the site plugin.
Just update the Math pom locally to 22-SNAPSHOT and add the snapshot
repo to your settings.xml:
apache.snapshots
true
Looks good to me.
On Fri, Sep 9, 2011 at 6:39 AM, Gilles Sadowski <
gil...@harfang.homelinux.org> wrote:
> On Thu, Sep 08, 2011 at 04:55:46PM -0700, Ted Dunning wrote:
> > OK.
> >
> > Replace that with the correct value. I meant it to be an index.
> >
> > That doesn't change my other points. Th
On Thu, Sep 08, 2011 at 04:55:46PM -0700, Ted Dunning wrote:
> OK.
>
> Replace that with the correct value. I meant it to be an index.
>
> That doesn't change my other points. There is an inherent problem with
> "less than" comments when you have subtracted several other elements
> previously a
On Thu, Sep 08, 2011 at 09:27:18PM -0500, Greg Sterijevski wrote:
> I agree with Ted. You sometimes run into this issue with psuedoinverses. You
> discover a zero eigenvalue at index i. The user's natural inclination is to
> attribute it to the corresponding column of the data matrix.
>
> -Greg
>
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
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-configuration has an issue affecting its community integration.
Th
I meant "compilation problem"...
Le 9 septembre 2011 09:37, Sébastien Brisard
a écrit :
> OK, thank you Luc. We are still doing some refactoring in the linear
> package. If this induces compilation of the ode package, I'll let you
> know.
> Sébastien
>
> 2011/9/9 Luc Maisonobe :
>> Le 09/09/2011
OK, thank you Luc. We are still doing some refactoring in the linear
package. If this induces compilation of the ode package, I'll let you
know.
Sébastien
2011/9/9 Luc Maisonobe :
> Le 09/09/2011 04:05, Sébastien Brisard a écrit :
>>
>> Sorry Ted, I was not very clear in my explanations.
>> solve
Good morning guys,
I just did an experiment on my local checkout of the parent pom,
adding the buildnumber plugin, in order to have a new
`Implementation-Build` manifest entry in the jars, where reported the
revision number and the timestamp.
I applied locally on [chain] and got:
Implementatio
Le 09/09/2011 04:05, Sébastien Brisard a écrit :
Sorry Ted, I was not very clear in my explanations.
solve does return a RealMatrix. Internally, it builds BlockRealMatrix, though.
The issue is that Luc needs the underlying double[][] array in this
ODE application.
Yes, this is exactly the point
66 matches
Mail list logo