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 D8D72200C5F for ; Sun, 23 Apr 2017 19:44:37 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D785A160BB7; Sun, 23 Apr 2017 17:44:37 +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 34D73160BA6 for ; Sun, 23 Apr 2017 19:44:37 +0200 (CEST) Received: (qmail 62092 invoked by uid 500); 23 Apr 2017 17:44:35 -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 61622 invoked by uid 99); 23 Apr 2017 17:44:35 -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; Sun, 23 Apr 2017 17:44:35 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 38118E3A9C; Sun, 23 Apr 2017 17:44:35 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ericbarnhill@apache.org To: commits@commons.apache.org Date: Sun, 23 Apr 2017 17:44:43 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [09/12] commons-numbers git commit: Javadoc. archived-at: Sun, 23 Apr 2017 17:44:38 -0000 Javadoc. Project: http://git-wip-us.apache.org/repos/asf/commons-numbers/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-numbers/commit/1e4947b7 Tree: http://git-wip-us.apache.org/repos/asf/commons-numbers/tree/1e4947b7 Diff: http://git-wip-us.apache.org/repos/asf/commons-numbers/diff/1e4947b7 Branch: refs/heads/complex-dev Commit: 1e4947b722811f01ea72a218eb6d84af0ad53ba1 Parents: 193b4f9 Author: Gilles Sadowski Authored: Sat Apr 22 02:10:06 2017 +0200 Committer: Gilles Sadowski Committed: Sat Apr 22 02:10:06 2017 +0200 ---------------------------------------------------------------------- .../commons/numbers/fraction/ContinuedFraction.java | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-numbers/blob/1e4947b7/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/ContinuedFraction.java ---------------------------------------------------------------------- diff --git a/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/ContinuedFraction.java b/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/ContinuedFraction.java index ebf447b..47bd9b9 100644 --- a/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/ContinuedFraction.java +++ b/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/ContinuedFraction.java @@ -19,18 +19,10 @@ package org.apache.commons.numbers.fraction; import org.apache.commons.numbers.core.Precision; /** - * Provides a generic means to evaluate continued fractions. Subclasses simply - * provided the a and b coefficients to evaluate the continued fraction. - * - *

- * References: - *

- * - * - * + * Provides a generic means to evaluate + * continued fractions. + * Subclasses must provide the {@link #getA(int,double) a} and {@link #getB(int,double) b} + * coefficients to evaluate the continued fraction. */ public abstract class ContinuedFraction { /** Maximum allowed numerical error. */