Home | History | Annotate | Download | only in test

Lines Matching defs:functor

106 // Generic functor
108 struct Functor
121 Functor() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {}
122 Functor(int inputs, int values) : m_inputs(inputs), m_values(values) {}
131 struct lmder_functor : Functor<double>
133 lmder_functor(void): Functor<double>(3,15) {}
177 lmder_functor functor;
178 LevenbergMarquardt<lmder_functor> lm(functor);
206 lmder_functor functor;
207 LevenbergMarquardt<lmder_functor> lm(functor);
243 struct hybrj_functor : Functor<double>
245 hybrj_functor(void) : Functor<double>(9,9) {}
291 hybrj_functor functor;
292 HybridNonLinearSolver<hybrj_functor> solver(functor);
324 hybrj_functor functor;
325 HybridNonLinearSolver<hybrj_functor> solver(functor);
349 struct hybrd_functor : Functor<double>
351 hybrd_functor(void) : Functor<double>(9,9) {}
380 hybrd_functor functor;
381 HybridNonLinearSolver<hybrd_functor> solver(functor);
407 hybrd_functor functor;
408 HybridNonLinearSolver<hybrd_functor> solver(functor);
431 struct lmstr_functor : Functor<double>
433 lmstr_functor(void) : Functor<double>(3,15) {}
482 lmstr_functor functor;
483 LevenbergMarquardt<lmstr_functor> lm(functor);
511 lmstr_functor functor;
512 LevenbergMarquardt<lmstr_functor> lm(functor);
531 struct lmdif_functor : Functor<double>
533 lmdif_functor(void) : Functor<double>(3,15) {}
567 lmdif_functor functor;
569 info = LevenbergMarquardt<lmdif_functor>::lmdif1(functor, x, &nfev);
576 functor(x, fvec);
597 lmdif_functor functor;
598 NumericalDiff<lmdif_functor> numDiff(functor);
634 struct chwirut2_functor : Functor<double>
636 chwirut2_functor(void) : Functor<double>(3,54) {}
683 chwirut2_functor functor;
684 LevenbergMarquardt<chwirut2_functor> lm(functor);
721 struct misra1a_functor : Functor<double>
723 misra1a_functor(void) : Functor<double>(2,14) {}
763 misra1a_functor functor;
764 LevenbergMarquardt<misra1a_functor> lm(functor);
795 struct hahn1_functor : Functor<double>
797 hahn1_functor(void) : Functor<double>(7,236) {}
853 hahn1_functor functor;
854 LevenbergMarquardt<hahn1_functor> lm(functor);
896 struct misra1d_functor : Functor<double>
898 misra1d_functor(void) : Functor<double>(2,14) {}
939 misra1d_functor functor;
940 LevenbergMarquardt<misra1d_functor> lm(functor);
972 struct lanczos1_functor : Functor<double>
974 lanczos1_functor(void) : Functor<double>(6,24) {}
1017 lanczos1_functor functor;
1018 LevenbergMarquardt<lanczos1_functor> lm(functor);
1060 struct rat42_functor : Functor<double>
1062 rat42_functor(void) : Functor<double>(3,9) {}
1105 rat42_functor functor;
1106 LevenbergMarquardt<rat42_functor> lm(functor);
1139 struct MGH10_functor : Functor<double>
1141 MGH10_functor(void) : Functor<double>(3,16) {}
1183 MGH10_functor functor;
1184 LevenbergMarquardt<MGH10_functor> lm(functor);
1218 struct BoxBOD_functor : Functor<double>
1220 BoxBOD_functor(void) : Functor<double>(2,6) {}
1259 BoxBOD_functor functor;
1260 LevenbergMarquardt<BoxBOD_functor> lm(functor);
1297 struct MGH17_functor : Functor<double>
1299 MGH17_functor(void) : Functor<double>(5,33) {}
1341 MGH17_functor functor;
1342 LevenbergMarquardt<MGH17_functor> lm(functor);
1388 struct MGH09_functor : Functor<double>
1390 MGH09_functor(void) : Functor<double>(4,11) {}
1435 MGH09_functor functor;
1436 LevenbergMarquardt<MGH09_functor> lm(functor);
1475 struct Bennett5_functor : Functor<double>
1477 Bennett5_functor(void) : Functor<double>(3,154) {}
1521 Bennett5_functor functor;
1522 LevenbergMarquardt<Bennett5_functor> lm(functor);
1556 struct thurber_functor : Functor<double>
1558 thurber_functor(void) : Functor<double>(7,37) {}
1608 thurber_functor functor;
1609 LevenbergMarquardt<thurber_functor> lm(functor);
1655 struct rat43_functor : Functor<double>
1657 rat43_functor(void) : Functor<double>(4,15) {}
1700 rat43_functor functor;
1701 LevenbergMarquardt<rat43_functor> lm(functor);
1743 struct eckerle4_functor : Functor<double>
1745 eckerle4_functor(void) : Functor<double>(3,35) {}
1787 eckerle4_functor functor;
1788 LevenbergMarquardt<eckerle4_functor> lm(functor);