Home | History | Annotate | Download | only in test

Lines Matching defs:Functor

103 // Generic functor
105 struct Functor
118 Functor() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {}
119 Functor(int inputs, int values) : m_inputs(inputs), m_values(values) {}
128 struct lmder_functor : Functor<double>
130 lmder_functor(void): Functor<double>(3,15) {}
174 lmder_functor functor;
175 LevenbergMarquardt<lmder_functor> lm(functor);
203 lmder_functor functor;
204 LevenbergMarquardt<lmder_functor> lm(functor);
240 struct hybrj_functor : Functor<double>
242 hybrj_functor(void) : Functor<double>(9,9) {}
288 hybrj_functor functor;
289 HybridNonLinearSolver<hybrj_functor> solver(functor);
321 hybrj_functor functor;
322 HybridNonLinearSolver<hybrj_functor> solver(functor);
346 struct hybrd_functor : Functor<double>
348 hybrd_functor(void) : Functor<double>(9,9) {}
377 hybrd_functor functor;
378 HybridNonLinearSolver<hybrd_functor> solver(functor);
404 hybrd_functor functor;
405 HybridNonLinearSolver<hybrd_functor> solver(functor);
428 struct lmstr_functor : Functor<double>
430 lmstr_functor(void) : Functor<double>(3,15) {}
479 lmstr_functor functor;
480 LevenbergMarquardt<lmstr_functor> lm(functor);
508 lmstr_functor functor;
509 LevenbergMarquardt<lmstr_functor> lm(functor);
528 struct lmdif_functor : Functor<double>
530 lmdif_functor(void) : Functor<double>(3,15) {}
564 lmdif_functor functor;
566 info = LevenbergMarquardt<lmdif_functor>::lmdif1(functor, x, &nfev);
573 functor(x, fvec);
594 lmdif_functor functor;
595 NumericalDiff<lmdif_functor> numDiff(functor);
631 struct chwirut2_functor : Functor<double>
633 chwirut2_functor(void) : Functor<double>(3,54) {}
680 chwirut2_functor functor;
681 LevenbergMarquardt<chwirut2_functor> lm(functor);
718 struct misra1a_functor : Functor<double>
720 misra1a_functor(void) : Functor<double>(2,14) {}
760 misra1a_functor functor;
761 LevenbergMarquardt<misra1a_functor> lm(functor);
792 struct hahn1_functor : Functor<double>
794 hahn1_functor(void) : Functor<double>(7,236) {}
846 hahn1_functor functor;
847 LevenbergMarquardt<hahn1_functor> lm(functor);
889 struct misra1d_functor : Functor<double>
891 misra1d_functor(void) : Functor<double>(2,14) {}
932 misra1d_functor functor;
933 LevenbergMarquardt<misra1d_functor> lm(functor);
965 struct lanczos1_functor : Functor<double>
967 lanczos1_functor(void) : Functor<double>(6,24) {}
1010 lanczos1_functor functor;
1011 LevenbergMarquardt<lanczos1_functor> lm(functor);
1051 struct rat42_functor : Functor<double>
1053 rat42_functor(void) : Functor<double>(3,9) {}
1096 rat42_functor functor;
1097 LevenbergMarquardt<rat42_functor> lm(functor);
1130 struct MGH10_functor : Functor<double>
1132 MGH10_functor(void) : Functor<double>(3,16) {}
1174 MGH10_functor functor;
1175 LevenbergMarquardt<MGH10_functor> lm(functor);
1209 struct BoxBOD_functor : Functor<double>
1211 BoxBOD_functor(void) : Functor<double>(2,6) {}
1250 BoxBOD_functor functor;
1251 LevenbergMarquardt<BoxBOD_functor> lm(functor);
1288 struct MGH17_functor : Functor<double>
1290 MGH17_functor(void) : Functor<double>(5,33) {}
1332 MGH17_functor functor;
1333 LevenbergMarquardt<MGH17_functor> lm(functor);
1374 struct MGH09_functor : Functor<double>
1376 MGH09_functor(void) : Functor<double>(4,11) {}
1421 MGH09_functor functor;
1422 LevenbergMarquardt<MGH09_functor> lm(functor);
1461 struct Bennett5_functor : Functor<double>
1463 Bennett5_functor(void) : Functor<double>(3,154) {}
1504 Bennett5_functor functor;
1505 LevenbergMarquardt<Bennett5_functor> lm(functor);
1539 struct thurber_functor : Functor<double>
1541 thurber_functor(void) : Functor<double>(7,37) {}
1591 thurber_functor functor;
1592 LevenbergMarquardt<thurber_functor> lm(functor);
1638 struct rat43_functor : Functor<double>
1640 rat43_functor(void) : Functor<double>(4,15) {}
1683 rat43_functor functor;
1684 LevenbergMarquardt<rat43_functor> lm(functor);
1726 struct eckerle4_functor : Functor<double>
1728 eckerle4_functor(void) : Functor<double>(3,35) {}
1770 eckerle4_functor functor;
1771 LevenbergMarquardt<eckerle4_functor> lm(functor);