/external/eigen/unsupported/Eigen/src/NumericalDiff/ |
D | NumericalDiff.h | 70 int nfev=0; in df() local 83 Functor::operator()(x, val1); nfev++; in df() 102 nfev++; in df() 108 Functor::operator()(x, val2); nfev++; in df() 110 Functor::operator()(x, val1); nfev++; in df() 118 return nfev; in df()
|
/external/eigen/unsupported/test/ |
D | levenberg_marquardt.cpp | 81 VERIFY_IS_EQUAL(lm.nfev(), 6); in testLmder1() 110 VERIFY_IS_EQUAL(lm.nfev(), 6); in testLmder() 178 DenseIndex nfev; in testLmdif1() local 179 info = LevenbergMarquardt<lmdif_functor>::lmdif1(functor, x, &nfev); in testLmdif1() 379 VERIFY_IS_EQUAL(lm.nfev(), 19); in testNistMisra1a() 396 VERIFY_IS_EQUAL(lm.nfev(), 5); in testNistMisra1a() 470 VERIFY_IS_EQUAL(lm.nfev(), 11); in testNistHahn1() 556 VERIFY_IS_EQUAL(lm.nfev(), 9); in testNistMisra1d() 573 VERIFY_IS_EQUAL(lm.nfev(), 4); in testNistMisra1d() 634 VERIFY_IS_EQUAL(lm.nfev(), 79); in testNistLanczos1() [all …]
|
D | NonLinearOptimization.cpp | 183 VERIFY_IS_EQUAL(lm.nfev, 6); in testLmder1() 212 VERIFY_IS_EQUAL(lm.nfev, 6); in testLmder() 297 VERIFY_IS_EQUAL(solver.nfev, 11); in testHybrj1() 332 VERIFY_IS_EQUAL(solver.nfev, 11); in testHybrj() 386 VERIFY_IS_EQUAL(solver.nfev, 20); in testHybrd1() 417 VERIFY_IS_EQUAL(solver.nfev, 14); in testHybrd() 488 VERIFY_IS_EQUAL(lm.nfev, 6); in testLmstr1() 517 VERIFY_IS_EQUAL(lm.nfev, 6); in testLmstr() 568 DenseIndex nfev; in testLmdif1() local 569 info = LevenbergMarquardt<lmdif_functor>::lmdif1(functor, x, &nfev); in testLmdif1() [all …]
|
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/ |
D | LevenbergMarquardt.h | 56 … : functor(_functor) { nfev = njev = iter = 0; fnorm = gnorm = 0.; useExternalScaling=false; } in LevenbergMarquardt() 91 Index *nfev, 110 Index nfev; variable 186 nfev = 0; in minimizeInit() 200 nfev = 1; in minimizeInit() 227 nfev += df_ret; in minimizeOneStep() 289 ++nfev; in minimizeOneStep() 347 if (nfev >= parameters.maxfev) in minimizeOneStep() 405 nfev = 0; in minimizeOptimumStorageInit() 419 nfev = 1; in minimizeOptimumStorageInit() [all …]
|
D | HybridNonLinearSolver.h | 49 : functor(_functor) { nfev=njev=iter = 0; fnorm= 0.; useExternalScaling=false;} in HybridNonLinearSolver() 94 Index nfev; variable 156 nfev = 0; in solveInit() 169 nfev = 1; in solveInit() 251 ++nfev; in solveOneStep() 311 if (nfev >= parameters.maxfev) in solveOneStep() 396 nfev = 0; in solveNumericalDiffInit() 409 nfev = 1; in solveNumericalDiffInit() 443 nfev += (std::min)(parameters.nb_of_subdiagonals+parameters.nb_of_superdiagonals+ 1, n); in solveNumericalDiffOneStep() 494 ++nfev; in solveNumericalDiffOneStep() [all …]
|
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/ |
D | LevenbergMarquardt.h | 140 Index *nfev, 203 Index nfev() { return m_nfev; } in nfev() function 370 Index *nfev, in lmdif1() argument 389 if (nfev) in lmdif1() 390 * nfev = lm.nfev(); in lmdif1()
|
/external/lmfit/lib/ |
D | lmstruct.h | 65 int nfev; /* actual number of iterations. */ member
|
D | lmmin.c | 151 S->nfev = 0; /* function evaluation counter */ in lmmin() 239 S->nfev = 1; in lmmin() 264 ++(S->nfev); in lmmin() 421 ++(S->nfev); in lmmin() 507 if (S->nfev >= maxfev) { in lmmin()
|
/external/lmfit/demo/ |
D | nonlin1.c | 55 status.nfev, lm_infmsg[status.outcome] ); in main()
|
D | curve1.c | 50 status.nfev, lm_infmsg[status.outcome] ); in main()
|
D | curve2.c | 48 status.nfev, lm_infmsg[status.outcome] ); in main()
|
D | surface1.c | 75 status.nfev, lm_infmsg[status.outcome] ); in main()
|
/external/lmfit/man/ |
D | lmmin.pod | 151 =item B<int> I<status.nfev> 251 status.nfev, lm_infmsg[status.outcome] );
|
D | lmcurve.pod | 138 status.nfev, lm_infmsg[status.outcome] );
|
/external/lmfit/ |
D | CHANGELOG | 146 - nfev incrementation even if printout=0 (bug report C. Tanner)
|