From cd28a018fb327d38a30c502bedca66cffb26f271 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Mon, 3 Nov 2014 21:16:08 +0100 Subject: [PATCH] Fixed checkstyle warnings. --- .../math3/fitting/leastsquares/LeastSquaresFactory.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/math3/fitting/leastsquares/LeastSquaresFactory.java b/src/main/java/org/apache/commons/math3/fitting/leastsquares/LeastSquaresFactory.java index 1a92ac908..aa3be8ef0 100644 --- a/src/main/java/org/apache/commons/math3/fitting/leastsquares/LeastSquaresFactory.java +++ b/src/main/java/org/apache/commons/math3/fitting/leastsquares/LeastSquaresFactory.java @@ -51,6 +51,7 @@ public class LeastSquaresFactory { * @param model the model function. Produces the computed values. * @param observed the observed (target) values * @param start the initial guess. + * @param weight the weight matrix * @param checker convergence checker * @param maxEvaluations the maximum number of times to evaluate the model * @param maxIterations the maximum number to times to iterate in the algorithm @@ -74,7 +75,7 @@ public class LeastSquaresFactory { observed, start, checker, - maxEvaluations, + maxEvaluations, maxIterations, lazyEvaluation, paramValidator);