| # | Line 1 | Line 1 | |
|---|---|---|
| 1 | #ifndef _MININIZERPARAMETERSET_H_ | |
| 2 | #define _MININIZERPARAMETERSET_H_ | |
| 3 | ||
| 4 | < | const double DEFAULTTOLERANCE = 1.0e-4; |
| 4 | > | const double DEFAULTTOLERANCE = 1.0e-8; |
| 5 | ||
| 6 | // base class of minimizer's parameter set | |
| 7 | class MinimizerParameterSet{ | |
| # | Line 29 | Line 29 | class MinimizerParameterSet{ | |
| 29 | resetFrq = maxIteration; | |
| 30 | ||
| 31 | lsMaxIteration = 50; | |
| 32 | < | lsTol = 1.0e-4; |
| 32 | > | lsTol = DEFAULTTOLERANCE; |
| 33 | } | |
| 34 | ||
| 35 | void setStepTol(double tol) { stepTol = tol;} | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |