Home
last modified time | relevance | path

Searched refs:costRelativeTolerance (Results 1 – 6 of 6) sorted by relevance

/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/main/java/org/apache/commons/math3/optimization/general/
H A DLevenbergMarquardtOptimizer.java129 private final double costRelativeTolerance; field in LevenbergMarquardtOptimizer
203 double costRelativeTolerance, in LevenbergMarquardtOptimizer() argument
209 this.costRelativeTolerance = costRelativeTolerance; in LevenbergMarquardtOptimizer()
233 public LevenbergMarquardtOptimizer(double costRelativeTolerance, in LevenbergMarquardtOptimizer() argument
237 costRelativeTolerance, parRelativeTolerance, orthoTolerance, in LevenbergMarquardtOptimizer()
265 double costRelativeTolerance, in LevenbergMarquardtOptimizer() argument
271 this.costRelativeTolerance = costRelativeTolerance; in LevenbergMarquardtOptimizer()
506 if ((FastMath.abs(actRed) <= costRelativeTolerance && in doOptimize()
507 preRed <= costRelativeTolerance && in doOptimize()
520 costRelativeTolerance); in doOptimize()
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/main/java/org/apache/commons/math3/optim/nonlinear/vector/jacobian/
H A DLevenbergMarquardtOptimizer.java140 private final double costRelativeTolerance; field in LevenbergMarquardtOptimizer
214 double costRelativeTolerance, in LevenbergMarquardtOptimizer() argument
220 this.costRelativeTolerance = costRelativeTolerance; in LevenbergMarquardtOptimizer()
244 public LevenbergMarquardtOptimizer(double costRelativeTolerance, in LevenbergMarquardtOptimizer() argument
248 costRelativeTolerance, parRelativeTolerance, orthoTolerance, in LevenbergMarquardtOptimizer()
276 double costRelativeTolerance, in LevenbergMarquardtOptimizer() argument
282 this.costRelativeTolerance = costRelativeTolerance; in LevenbergMarquardtOptimizer()
515 if ((FastMath.abs(actRed) <= costRelativeTolerance && in doOptimize()
516 preRed <= costRelativeTolerance && in doOptimize()
528 costRelativeTolerance); in doOptimize()
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/main/java/org/apache/commons/math3/fitting/leastsquares/
H A DLevenbergMarquardtOptimizer.java119 private final double costRelativeTolerance; field in LevenbergMarquardtOptimizer
156 final double costRelativeTolerance, in LevenbergMarquardtOptimizer() argument
161 this.costRelativeTolerance = costRelativeTolerance; in LevenbergMarquardtOptimizer()
180 costRelativeTolerance, in withInitialStepBoundFactor()
207 costRelativeTolerance, in withParameterRelativeTolerance()
223 costRelativeTolerance, in withOrthoTolerance()
239 costRelativeTolerance, in withRankingThreshold()
262 return costRelativeTolerance; in getCostRelativeTolerance()
525 if ((FastMath.abs(actRed) <= costRelativeTolerance && in optimize()
526 preRed <= costRelativeTolerance && in optimize()
[all …]
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/test/java/org/apache/commons/math3/optimization/general/
H A DLevenbergMarquardtOptimizerTest.java145 double costRelativeTolerance, double parRelativeTolerance, in checkEstimate() argument
150 costRelativeTolerance, in checkEstimate()
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/test/java/org/apache/commons/math3/optim/nonlinear/vector/jacobian/
H A DLevenbergMarquardtOptimizerTest.java175 double costRelativeTolerance, double parRelativeTolerance, in checkEstimate() argument
180 costRelativeTolerance, in checkEstimate()
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/test/java/org/apache/commons/math3/fitting/leastsquares/
H A DLevenbergMarquardtOptimizerTest.java126 double costRelativeTolerance, double parRelativeTolerance, in checkEstimate() argument
131 .withCostRelativeTolerance(costRelativeTolerance) in checkEstimate()