Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id C7660200CBA for ; Mon, 29 May 2017 02:33:59 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id C634A160BCC; Mon, 29 May 2017 00:33:59 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 1F4A0160BDE for ; Mon, 29 May 2017 02:33:58 +0200 (CEST) Received: (qmail 46751 invoked by uid 500); 29 May 2017 00:33:58 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 46356 invoked by uid 99); 29 May 2017 00:33:57 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 May 2017 00:33:57 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 39E2DE0016; Mon, 29 May 2017 00:33:57 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: erans@apache.org To: commits@commons.apache.org Date: Mon, 29 May 2017 00:33:59 -0000 Message-Id: <44d2ef11dd9d4bb68bea2b1e53f17821@git.apache.org> In-Reply-To: <6b8b0547e50a42a9a99a1390852b83db@git.apache.org> References: <6b8b0547e50a42a9a99a1390852b83db@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/4] [math] Javadoc. archived-at: Mon, 29 May 2017 00:34:00 -0000 Javadoc. Removed "@link" references were causing javadoc warnings. Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/4717edc2 Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/4717edc2 Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/4717edc2 Branch: refs/heads/master Commit: 4717edc26aeef4fb168de349335fb3d52bcbbaa9 Parents: bb5568b Author: Gilles Authored: Mon May 29 02:28:54 2017 +0200 Committer: Gilles Committed: Mon May 29 02:28:54 2017 +0200 ---------------------------------------------------------------------- .../commons/math4/distribution/PoissonDistribution.java | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/4717edc2/src/main/java/org/apache/commons/math4/distribution/PoissonDistribution.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/math4/distribution/PoissonDistribution.java b/src/main/java/org/apache/commons/math4/distribution/PoissonDistribution.java index 2f13188..c74216f 100644 --- a/src/main/java/org/apache/commons/math4/distribution/PoissonDistribution.java +++ b/src/main/java/org/apache/commons/math4/distribution/PoissonDistribution.java @@ -49,13 +49,7 @@ public class PoissonDistribution extends AbstractIntegerDistribution { /** Mean of the distribution. */ private final double mean; - /** - * Maximum number of iterations for cumulative probability. Cumulative - * probabilities are estimated using either Lanczos series approximation - * of {@link RegularizedGamma.P#value(double, double, double, int)} - * or continued fraction approximation of - * {@link RegularizedGamma.Q#value(double, double, double, int)}. - */ + /** Maximum number of iterations for cumulative probability. */ private final int maxIterations; /** Convergence criterion for cumulative probability. */