Re: [commons-net] branch master updated: Javadoc 17 does not like empty paras

2021-08-01 Thread Gary Gregory
FYI, "" is not an "empty para", it's an open tag on an element, while "" is an empty element. What Javadoc wants is for tags to be balanced, IOW close when was previously opened. Gary On Sun, Aug 1, 2021, 19:28 wrote: > This is an automated email from the ASF dual-hosted git repository. > >

Re: [geometry] 1.0 release (take 2)

2021-08-01 Thread Matt Juntunen
> We should wait for some positive feedback from the code being > exercised by that new tool. [I've no idea of how long is long enough.] If I'm reading this link [1] correctly, it sounds like a few days should be sufficient. (The fuzzers were merged in today.) > Then, as a matter of preference,

Re: [Statistics] ContinuousDistribution probability and ConstantContinuousDistribution

2021-08-01 Thread Gilles Sadowski
> > > > [...] > > > > > > Opinion on dropping ConstantContinuousDistribution > > > > [...] > > > > Do you mean that this ad-hoc class should be moved back to CM (as a > > private inner class of "EmpiricalDistribution")? > > > > That would be cleaner. The distribution is only used to allow the >

Re: [NET] Issues with FTPSClientTest and JKS files

2021-08-01 Thread sebb
On Thu, 29 Jul 2021 at 14:22, sebb wrote: > > On Thu, 29 Jul 2021 at 13:43, Gary Gregory wrote: > > > > On Tue, Jul 27, 2021 at 7:38 PM sebb wrote: > > > > > > On Tue, 27 Jul 2021 at 16:05, sebb wrote: > > > > > > > > Something strange is going on with the FTPSClientTest. > > > > > > > > One

Re: [Statistics] ContinuousDistribution probability and ConstantContinuousDistribution

2021-08-01 Thread Alex Herbert
On Sun, 1 Aug 2021 at 22:28, Gilles Sadowski wrote: > Le dim. 1 août 2021 à 20:13, Alex Herbert a > écrit : > > > > On Sun, 1 Aug 2021 at 18:40, Alex Herbert > wrote: > > > > > > > > A bit of digging in the commit history of CM found that this > distribution > > > was added to fix MATH-984 [1]

Re: [Statistics] ContinuousDistribution probability and ConstantContinuousDistribution

2021-08-01 Thread Gilles Sadowski
Le dim. 1 août 2021 à 20:13, Alex Herbert a écrit : > > On Sun, 1 Aug 2021 at 18:40, Alex Herbert wrote: > > > > > A bit of digging in the commit history of CM found that this distribution > > was added to fix MATH-984 [1] so the EmpericalDistribution can represent > > each bin using a

Re: [VOTE] Release Apache Commons DBCP 2.9.0 based on RC1

2021-08-01 Thread Bruno P. Kinoshita
  [x] +1 Release these artifacts Build OK from tag with Maven home: /opt/apache-maven-3.6.3 Java version: 11.0.11, vendor: Ubuntu, runtime: /usr/lib/jvm/java-11-openjdk-amd64 Default locale: en_US, platform encoding: UTF-8 OS name: "linux", version: "5.4.0-80-generic", arch: "amd64", family:

Re: [Statistics] ContinuousDistribution probability and ConstantContinuousDistribution

2021-08-01 Thread Alex Herbert
On Sun, 1 Aug 2021 at 18:40, Alex Herbert wrote: > > A bit of digging in the commit history of CM found that this distribution > was added to fix MATH-984 [1] so the EmpericalDistribution can represent > each bin using a distribution that can perform sampling of the bin. If a > bin has a single

Re: [Statistics] ContinuousDistribution probability and ConstantContinuousDistribution

2021-08-01 Thread Gilles Sadowski
Le dim. 1 août 2021 à 19:57, Alex Herbert a écrit : > > On Sun, 1 Aug 2021 at 15:57, Gilles Sadowski wrote: > > > > > > > > > 1. Remove the method > > > > +1 > > > If we remove: > > ContinuousDistribution.probability(double) > > There is the option to rename > >

Re: [Statistics] Precomputation of values used in probabilities

2021-08-01 Thread Gilles Sadowski
Le dim. 1 août 2021 à 19:24, Alex Herbert a écrit : > > Some of the distributions precompute values to be used in the probability > computations, others do not. > > IMO if you are using a distribution it is likely that you will call one of > the probability functions many times. Which one is

Re: [Statistics] ContinuousDistribution probability and ConstantContinuousDistribution

2021-08-01 Thread Alex Herbert
On Sun, 1 Aug 2021 at 15:57, Gilles Sadowski wrote: > > > > > 1. Remove the method > > +1 If we remove: ContinuousDistribution.probability(double) There is the option to rename ContinuousDistribution.density(double) ContinuousDistribution.logDensity(double) To probability and

Re: [Statistics] ContinuousDistribution probability and ConstantContinuousDistribution

2021-08-01 Thread Alex Herbert
On Sun, 1 Aug 2021 at 18:20, Gilles Sadowski wrote: > Hi. > > Le dim. 1 août 2021 à 18:52, Alex Herbert a > écrit : > > > > On Sun, 1 Aug 2021 at 15:57, Gilles Sadowski > wrote: > > > > > > > > > > > Do you think that the API defined in the > > > "commons-statistics-distribution" > > >

[Statistics] Precomputation of values used in probabilities

2021-08-01 Thread Alex Herbert
Some of the distributions precompute values to be used in the probability computations, others do not. IMO if you are using a distribution it is likely that you will call one of the probability functions many times. Which one is unknown. Options are: 1. Precompute all values that can be

Re: [Statistics] ContinuousDistribution probability and ConstantContinuousDistribution

2021-08-01 Thread Gilles Sadowski
Hi. Le dim. 1 août 2021 à 18:52, Alex Herbert a écrit : > > On Sun, 1 Aug 2021 at 15:57, Gilles Sadowski wrote: > > > > > > > Do you think that the API defined in the > > "commons-statistics-distribution" > > module is suitable for implementing this concept: > >

Re: [Statistics] ContinuousDistribution probability and ConstantContinuousDistribution

2021-08-01 Thread Alex Herbert
On Sun, 1 Aug 2021 at 15:57, Gilles Sadowski wrote: > > > Do you think that the API defined in the > "commons-statistics-distribution" > module is suitable for implementing this concept: > https://en.wikipedia.org/wiki/Distribution_(mathematics) > ? > That is a different definition of

Re: [geometry] 1.0 release (take 2)

2021-08-01 Thread Alex Herbert
On Sun, 1 Aug 2021 at 16:25, Gilles Sadowski wrote: > Hi. > > Le dim. 1 août 2021 à 02:57, Matt Juntunen a > écrit : > > > > Hello, > > > > I've addressed a few issues since I last proposed the commons-geometry > > 1.0 release, namely > > - reducing the code smells in SonarCloud from 100+ to 8

Re: [geometry] 1.0 release (take 2)

2021-08-01 Thread Gilles Sadowski
Hi. Le dim. 1 août 2021 à 02:57, Matt Juntunen a écrit : > > Hello, > > I've addressed a few issues since I last proposed the commons-geometry > 1.0 release, namely > - reducing the code smells in SonarCloud from 100+ to 8 (mostly by > clearing false positives) and > - removing use of checked

Re: [Statistics] ContinuousDistribution probability and ConstantContinuousDistribution

2021-08-01 Thread Gilles Sadowski
Hello. Le dim. 1 août 2021 à 16:45, Alex Herbert a écrit : > > The ContinuousDistribution interface has the method: > > /** > * For a random variable {@code X} whose values are distributed according > * to this distribution, this method returns {@code P(X = x)}. > * In other words, this

[Statistics] ContinuousDistribution probability and ConstantContinuousDistribution

2021-08-01 Thread Alex Herbert
The ContinuousDistribution interface has the method: /** * For a random variable {@code X} whose values are distributed according * to this distribution, this method returns {@code P(X = x)}. * In other words, this method represents the probability mass function * (PMF) for the distribution.

Impact of COVID-19 on Open Source Development Activities

2021-08-01 Thread Edna Dias Canedo
Dear all, This is a reminder to take The Impact of COVID-19 on Open Source Development Activities Survey that was sent to you a few days ago: https://docs.google.com/forms/d/e/1FAIpQLSedJ1LT8AgLCoQMuyIcIxuoUsLHy6mzGf5-TEsWj64Y-FCDrQ/viewform?usp=sf_link If you already have taken the survey, you

Re: [VOTE] Release Apache Commons DBCP 2.9.0 based on RC1

2021-08-01 Thread Arturo Bernal
[x] +1 Release these artifacts Building OK from tag, with `clean test install` targets. Building OK from tag, with `site:site` targets Browsed site, Javadoc and reports, looks ok. Apache Maven 3.8.1 (05c21c65bdfed0f71a2f2ada8b84da59348c4c5d) Maven home: /opt/apache-maven-3.8.1 Java version: