Home | History | Annotate | Download | only in test

Lines Matching defs:Functor

105 // Generic functor
107 struct Functor
120 Functor() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {}
121 Functor(int inputs, int values) : m_inputs(inputs), m_values(values) {}
130 struct lmder_functor : Functor<double>
132 lmder_functor(void): Functor<double>(3,15) {}
176 lmder_functor functor;
177 LevenbergMarquardt<lmder_functor> lm(functor);
205 lmder_functor functor;
206 LevenbergMarquardt<lmder_functor> lm(functor);
242 struct hybrj_functor : Functor<double>
244 hybrj_functor(void) : Functor<double>(9,9) {}
290 hybrj_functor functor;
291 HybridNonLinearSolver<hybrj_functor> solver(functor);
323 hybrj_functor functor;
324 HybridNonLinearSolver<hybrj_functor> solver(functor);
348 struct hybrd_functor : Functor<double>
350 hybrd_functor(void) : Functor<double>(9,9) {}
379 hybrd_functor functor;
380 HybridNonLinearSolver<hybrd_functor> solver(functor);
406 hybrd_functor functor;
407 HybridNonLinearSolver<hybrd_functor> solver(functor);
430 struct lmstr_functor : Functor<double>
432 lmstr_functor(void) : Functor<double>(3,15) {}
481 lmstr_functor functor;
482 LevenbergMarquardt<lmstr_functor> lm(functor);
510 lmstr_functor functor;
511 LevenbergMarquardt<lmstr_functor> lm(functor);
530 struct lmdif_functor : Functor<double>
532 lmdif_functor(void) : Functor<double>(3,15) {}
566 lmdif_functor functor;
568 info = LevenbergMarquardt<lmdif_functor>::lmdif1(functor, x, &nfev);
575 functor(x, fvec);
596 lmdif_functor functor;
597 NumericalDiff<lmdif_functor> numDiff(functor);
633 struct chwirut2_functor : Functor<double>
635 chwirut2_functor(void) : Functor<double>(3,54) {}
682 chwirut2_functor functor;
683 LevenbergMarquardt<chwirut2_functor> lm(functor);
720 struct misra1a_functor : Functor<double>
722 misra1a_functor(void) : Functor<double>(2,14) {}
762 misra1a_functor functor;
763 LevenbergMarquardt<misra1a_functor> lm(functor);
794 struct hahn1_functor : Functor<double>
796 hahn1_functor(void) : Functor<double>(7,236) {}
852 hahn1_functor functor;
853 LevenbergMarquardt<hahn1_functor> lm(functor);
895 struct misra1d_functor : Functor<double>
897 misra1d_functor(void) : Functor<double>(2,14) {}
938 misra1d_functor functor;
939 LevenbergMarquardt<misra1d_functor> lm(functor);
971 struct lanczos1_functor : Functor<double>
973 lanczos1_functor(void) : Functor<double>(6,24) {}
1016 lanczos1_functor functor;
1017 LevenbergMarquardt<lanczos1_functor> lm(functor);
1057 struct rat42_functor : Functor<double>
1059 rat42_functor(void) : Functor<double>(3,9) {}
1102 rat42_functor functor;
1103 LevenbergMarquardt<rat42_functor> lm(functor);
1136 struct MGH10_functor : Functor<double>
1138 MGH10_functor(void) : Functor<double>(3,16) {}
1180 MGH10_functor functor;
1181 LevenbergMarquardt<MGH10_functor> lm(functor);
1215 struct BoxBOD_functor : Functor<double>
1217 BoxBOD_functor(void) : Functor<double>(2,6) {}
1256 BoxBOD_functor functor;
1257 LevenbergMarquardt<BoxBOD_functor> lm(functor);
1294 struct MGH17_functor : Functor<double>
1296 MGH17_functor(void) : Functor<double>(5,33) {}
1338 MGH17_functor functor;
1339 LevenbergMarquardt<MGH17_functor> lm(functor);
1380 struct MGH09_functor : Functor<double>
1382 MGH09_functor(void) : Functor<double>(4,11) {}
1427 MGH09_functor functor;
1428 LevenbergMarquardt<MGH09_functor> lm(functor);
1467 struct Bennett5_functor : Functor<double>
1469 Bennett5_functor(void) : Functor<double>(3,154) {}
1513 Bennett5_functor functor;
1514 LevenbergMarquardt<Bennett5_functor> lm(functor);
1548 struct thurber_functor : Functor<double>
1550 thurber_functor(void) : Functor<double>(7,37) {}
1600 thurber_functor functor;
1601 LevenbergMarquardt<thurber_functor> lm(functor);
1647 struct rat43_functor : Functor<double>
1649 rat43_functor(void) : Functor<double>(4,15) {}
1692 rat43_functor functor;
1693 LevenbergMarquardt<rat43_functor> lm(functor);
1735 struct eckerle4_functor : Functor<double>
1737 eckerle4_functor(void) : Functor<double>(3,35) {}
1779 eckerle4_functor functor;
1780 LevenbergMarquardt<eckerle4_functor> lm(functor);