Re: commons-lang pull request: Adding .gitignore to commons-lang

2013-08-29 Thread Benedikt Ritter
2013/8/29 Oliver Heger > Am 29.08.2013 12:31, schrieb sebb: > > On 29 August 2013 09:01, Benedikt Ritter wrote: > >> Hi, > >> > >> two questions about this: > >> > >> 1. What is the process for applying github pull requests? I guess one > has > >> to generate a patch file and apply it directly t

Re: [CSV] Creating CSVParser instances

2013-08-29 Thread Benedikt Ritter
2013/8/14 Adrian Crum > > On 8/14/2013 1:10 PM, Emmanuel Bourg wrote: > >> Le 14/08/2013 20:09, Benedikt Ritter a écrit : >> >> Every factory method an the constructor now take a CSVFormat. How about >>> using CSVFormat.DEFAULT is null is passed as CSVFormat? >>> >> >> Keeping null is better, us

Re: [functor][FUNCTOR-14] Merge generators branch

2013-08-29 Thread Benedikt Ritter
2013/8/29 Bruno P. Kinoshita > Hi Benedikt, > > >From just looking at this code snipped I don't get what BoundType.OPEN > >means. Can you enlighten me? ;-) > > The BoundType.{OPEN|CLOSED} is used to control whether the left and right > boundary values are included in the range. i.e., > > 0, OPEN,

Re: [ALL] Design question: static utility classes

2013-08-29 Thread Benedikt Ritter
Yep, makes sense... Thanks Matt. 2013/8/29 Matt Benson > I prefer a slight variant: don't give the user static methods on a > different class, just give them one static method yielding an instance > configured for default behavior. I think that's the basic approach being > taken with CSV form

Re: [ALL] Design question: static utility classes

2013-08-29 Thread Matt Benson
I prefer a slight variant: don't give the user static methods on a different class, just give them one static method yielding an instance configured for default behavior. I think that's the basic approach being taken with CSV formats, no? Matt On Thu, Aug 29, 2013 at 1:52 PM, Oliver Heger wrot

Re: commons-lang pull request: Adding .gitignore to commons-lang

2013-08-29 Thread Oliver Heger
Am 29.08.2013 12:31, schrieb sebb: > On 29 August 2013 09:01, Benedikt Ritter wrote: >> Hi, >> >> two questions about this: >> >> 1. What is the process for applying github pull requests? I guess one has >> to generate a patch file and apply it directly to the SVN Repo? > > It's difficult to trac

Re: [ALL] Design question: static utility classes

2013-08-29 Thread Oliver Heger
Am 29.08.2013 10:26, schrieb Benedikt Ritter: > 2013/8/27 Oliver Heger > >> Am 27.08.2013 07:06, schrieb Phil Steitz: >>> On 8/26/13 11:28 AM, Oliver Heger wrote: Am 26.08.2013 16:18, schrieb Phil Steitz: > > On Aug 26, 2013, at 7:38 PM, Oliver Heger < >> oliver.he...@oliver-heger.de

[MATH] On computational efficiency in DerivativeStructures

2013-08-29 Thread Ajo Fod
Hello, I wonder if the number of computations required to compute a derivative structure can be reduced. Say the derivative structure of f to order d=2 is desired: f(g1(x1), g2(x2), ... gn(xn)) where x1,x2 ... xn are subsets of variables that are not necessarily disjoint. For each gi(xi), O(n^2)

Re: [DISCUSS] Math TLP...

2013-08-29 Thread Rodion Efremov
Don't you can conclude that matter, shut the f*** up, and enjoy the last days of summer? ;) --- TIA, Rodion James Carman писал 29.08.2013 05:46 PM: To be clear, I don't really care one way or the other. I just thought it was probably good to have a formal discussion on the matter. I'm also

Re: [DISCUSS] Math TLP...

2013-08-29 Thread James Carman
To be clear, I don't really care one way or the other. I just thought it was probably good to have a formal discussion on the matter. I'm also a math geek, so I like reading the emails sometimes (sometimes they're way over my head too). It takes me back to my college days. :) I would probably s

Re: [ALL] Design question: static utility classes

2013-08-29 Thread James Carman
We already discussed this. On Thu, Aug 29, 2013 at 4:26 AM, Benedikt Ritter wrote: > 2013/8/27 Oliver Heger > >> Am 27.08.2013 07:06, schrieb Phil Steitz: >> > On 8/26/13 11:28 AM, Oliver Heger wrote: >> >> Am 26.08.2013 16:18, schrieb Phil Steitz: >> >>> >> >>> On Aug 26, 2013, at 7:38 PM, Oliv

Re: [functor][FUNCTOR-14] Merge generators branch

2013-08-29 Thread Bruno P. Kinoshita
Hi Benedikt,  >From just looking at this code snipped I don't get what BoundType.OPEN >means. Can you enlighten me? ;-) The BoundType.{OPEN|CLOSED} is used to control whether the left and right  boundary values are included in the range. i.e.,  0, OPEN, 2, OPEN = (0, 2) 0, CLOSED, 2, OPEN = (0,

Re: commons-lang pull request: Adding .gitignore to commons-lang

2013-08-29 Thread sebb
On 29 August 2013 09:01, Benedikt Ritter wrote: > Hi, > > two questions about this: > > 1. What is the process for applying github pull requests? I guess one has > to generate a patch file and apply it directly to the SVN Repo? It's difficult to track patches in mail messages, so I suggest creati

Re: [DISCUSS] Math TLP...

2013-08-29 Thread Gilles
Hello. James, it's good that you bring this up here. This is something I've been thinking about lately. I agree that the mathematical knowledge that seems to be necessary to dig into [MATH] goes beyond what you learn in Computer Science courses at university. I usually skip discussions abo

Re: [ALL] Design question: static utility classes

2013-08-29 Thread Benedikt Ritter
2013/8/27 Oliver Heger > Am 27.08.2013 07:06, schrieb Phil Steitz: > > On 8/26/13 11:28 AM, Oliver Heger wrote: > >> Am 26.08.2013 16:18, schrieb Phil Steitz: > >>> > >>> On Aug 26, 2013, at 7:38 PM, Oliver Heger < > oliver.he...@oliver-heger.de> wrote: > >>> > Am 25.08.2013 18:45, schrieb A

Re: [DISCUSS] Math TLP...

2013-08-29 Thread Benedikt Ritter
Hi, James, it's good that you bring this up here. This is something I've been thinking about lately. I agree that the mathematical knowledge that seems to be necessary to dig into [MATH] goes beyond what you learn in Computer Science courses at university. I usually skip discussions about math bu

Re: commons-lang pull request: Adding .gitignore to commons-lang

2013-08-29 Thread Benedikt Ritter
Hi, two questions about this: 1. What is the process for applying github pull requests? I guess one has to generate a patch file and apply it directly to the SVN Repo? 2. Do we add .gitignore files to our repos even though our primary SCM is SVN? It makes sense since everything is mirrored to git

Re: [functor][FUNCTOR-14] Merge generators branch

2013-08-29 Thread Benedikt Ritter
Hi Bruno, 2013/8/24 Bruno P. Kinoshita > Hi All, > > I would like to merge [functor]'s branch generators-FUNCTOR-14 [1], > related to issue FUNCTOR-14 [2]. > > This the summary of the changes in that branch: > > - New subpackage, o.a.c.functor.generator.loop > - New generator type added, LoopGe