Fixed checkstyle warnings.

This commit is contained in:
Luc Maisonobe 2014-11-03 21:16:08 +01:00
parent ed565027c7
commit cd28a018fb
1 changed files with 2 additions and 1 deletions

View File

@ -51,6 +51,7 @@ public class LeastSquaresFactory {
* @param model the model function. Produces the computed values. * @param model the model function. Produces the computed values.
* @param observed the observed (target) values * @param observed the observed (target) values
* @param start the initial guess. * @param start the initial guess.
* @param weight the weight matrix
* @param checker convergence checker * @param checker convergence checker
* @param maxEvaluations the maximum number of times to evaluate the model * @param maxEvaluations the maximum number of times to evaluate the model
* @param maxIterations the maximum number to times to iterate in the algorithm * @param maxIterations the maximum number to times to iterate in the algorithm
@ -74,7 +75,7 @@ public class LeastSquaresFactory {
observed, observed,
start, start,
checker, checker,
maxEvaluations, maxEvaluations,
maxIterations, maxIterations,
lazyEvaluation, lazyEvaluation,
paramValidator); paramValidator);