Javadoc.
Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/1f7b1c12 Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/1f7b1c12 Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/1f7b1c12 Branch: refs/heads/master Commit: 1f7b1c12ff7182b40966f10f09584feda76daacd Parents: ede62af Author: Gilles <er...@apache.org> Authored: Tue Sep 1 14:42:32 2015 +0200 Committer: Gilles <er...@apache.org> Committed: Tue Sep 1 14:42:32 2015 +0200 ---------------------------------------------------------------------- .../commons/math4/analysis/solvers/BaseUnivariateSolver.java | 4 ++-- .../java/org/apache/commons/math4/ml/neuralnet/MapUtils.java | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/1f7b1c12/src/main/java/org/apache/commons/math4/analysis/solvers/BaseUnivariateSolver.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/math4/analysis/solvers/BaseUnivariateSolver.java b/src/main/java/org/apache/commons/math4/analysis/solvers/BaseUnivariateSolver.java index d5b90dc..7441029 100644 --- a/src/main/java/org/apache/commons/math4/analysis/solvers/BaseUnivariateSolver.java +++ b/src/main/java/org/apache/commons/math4/analysis/solvers/BaseUnivariateSolver.java @@ -28,13 +28,13 @@ import org.apache.commons.math4.exception.TooManyEvaluationsException; * This class is not intended for use outside of the Apache Commons Math * library, regular user should rely on more specific interfaces like * {@link UnivariateSolver}, {@link PolynomialSolver} or {@link - * DifferentiableUnivariateSolver}. + * UnivariateDifferentiableSolver}. * @param <FUNC> Type of function to solve. * * @since 3.0 * @see UnivariateSolver * @see PolynomialSolver - * @see DifferentiableUnivariateSolver + * @see UnivariateDifferentiableSolver */ public interface BaseUnivariateSolver<FUNC extends UnivariateFunction> { /** http://git-wip-us.apache.org/repos/asf/commons-math/blob/1f7b1c12/src/main/java/org/apache/commons/math4/ml/neuralnet/MapUtils.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/math4/ml/neuralnet/MapUtils.java b/src/main/java/org/apache/commons/math4/ml/neuralnet/MapUtils.java index 6683f25..b8efce1 100644 --- a/src/main/java/org/apache/commons/math4/ml/neuralnet/MapUtils.java +++ b/src/main/java/org/apache/commons/math4/ml/neuralnet/MapUtils.java @@ -123,6 +123,8 @@ public class MapUtils { * * @see #findBest(double[],Iterable,DistanceMeasure) * @see #findBestAndSecondBest(double[],Iterable,DistanceMeasure) + * + * @since 3.6 */ public static Neuron[] sort(double[] features, Iterable<Neuron> neurons,