You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2017/04/22 00:10:33 UTC

commons-numbers git commit: Javadoc.

Repository: commons-numbers
Updated Branches:
  refs/heads/master 193b4f93d -> 1e4947b72


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/master
Commit: 1e4947b722811f01ea72a218eb6d84af0ad53ba1
Parents: 193b4f9
Author: Gilles Sadowski <gi...@harfang.homelinux.org>
Authored: Sat Apr 22 02:10:06 2017 +0200
Committer: Gilles Sadowski <gi...@harfang.homelinux.org>
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.
- *
- * <p>
- * References:
- * </p>
- *
- * <ul>
- * <li><a href="http://mathworld.wolfram.com/ContinuedFraction.html">
- * Continued Fraction</a></li>
- * </ul>
- *
+ * Provides a generic means to evaluate
+ * <a href="http://mathworld.wolfram.com/ContinuedFraction.html">continued fractions</a>.
+ * 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. */