Re: svn commit: r1598071 - in /commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs: auxiliary/disk/ engine/control/ engine/memory/ utils/logger/ utils/struct/

2014-06-24 Thread Romain Manni-Bucau
Hi Sebb, saw you reverted few parts, can you give us a status and say me if I can help cleaning up what remains? Thanks, Romain Manni-Bucau Twitter: @rmannibucau Blog: http://rmannibucau.wordpress.com/ LinkedIn: http://fr.linkedin.com/in/rmannibucau Github: https://github.com/rmannibucau 20

Re: svn commit: r1598071 - in /commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs: auxiliary/disk/ engine/control/ engine/memory/ utils/logger/ utils/struct/

2014-06-24 Thread sebb
On 24 June 2014 10:17, Romain Manni-Bucau wrote: > Hi Sebb, > > saw you reverted few parts, > > can you give us a status and say me if I can help cleaning up what remains? AFAIK it has all now been reverted apart from the locking changes that were documented in the original log message. I don't

Re: svn commit: r1598071 - in /commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs: auxiliary/disk/ engine/control/ engine/memory/ utils/logger/ utils/struct/

2014-06-24 Thread Romain Manni-Bucau
Ok great, thank you then Romain Manni-Bucau Twitter: @rmannibucau Blog: http://rmannibucau.wordpress.com/ LinkedIn: http://fr.linkedin.com/in/rmannibucau Github: https://github.com/rmannibucau 2014-06-24 12:15 GMT+02:00 sebb : > On 24 June 2014 10:17, Romain Manni-Bucau wrote: > > Hi Sebb, >

Re: [math] use case for NaNStrategy.FIXED?

2014-06-24 Thread Luc Maisonobe
Hi Venkat, Le 23/06/2014 21:08, venkatesha murthy a écrit : > On Tue, Jun 24, 2014 at 12:08 AM, Luc Maisonobe wrote: >> Hi all, >> >> While looking further in Percentile class for MATH-1120, I have found >> another problem in the current implementation. NaNStrategy.FIXED should >> leave the NaNs

Re: [math] use case for NaNStrategy.FIXED?

2014-06-24 Thread venkatesha murthy
On Wed, Jun 25, 2014 at 12:21 AM, Luc Maisonobe wrote: > Hi Venkat, > > Le 23/06/2014 21:08, venkatesha murthy a écrit : > > On Tue, Jun 24, 2014 at 12:08 AM, Luc Maisonobe > wrote: > >> Hi all, > >> > >> While looking further in Percentile class for MATH-1120, I have found > >> another problem

Re: [math] use case for NaNStrategy.FIXED?

2014-06-24 Thread venkatesha murthy
On Wed, Jun 25, 2014 at 9:35 AM, venkatesha murthy < venkateshamurth...@gmail.com> wrote: Can i put a patch for this change? > > On Wed, Jun 25, 2014 at 12:21 AM, Luc Maisonobe > wrote: > >> Hi Venkat, >> >> Le 23/06/2014 21:08, venkatesha murthy a écrit : >> > On Tue, Jun 24, 2014 at 12:08 AM, L

[MATH-1120] Refactor KthSelector and PivotingStrategy out of Percentile

2014-06-24 Thread venkatesha murthy
The Percentile actually uses KthSelector logic and is dependent on only KthSelector however the variability part is pivoting strategy. Given that both KthSelector and Pivoting are independent we could make them as utility classes or may be functions with in MathUtils with exposed interfaces. Here