Searched refs:Corrector (Results 1 - 5 of 5) sorted by relevance

/external/ceres-solver/internal/ceres/
H A Dcorrector.h41 // Corrector is responsible for applying the second order correction
49 class Corrector { class in namespace:ceres::internal
66 explicit Corrector(double sq_norm, const double rho[3]);
H A Dcorrector.cc41 Corrector::Corrector(const double sq_norm, const double rho[3]) { function in class:ceres::internal::Corrector
112 void Corrector::CorrectResiduals(const int num_rows, double* residuals) {
118 void Corrector::CorrectJacobian(const int num_rows,
H A Dcorrector_test.cc44 // If rho[1] is zero, the Corrector constructor should crash.
45 TEST(Corrector, ZeroGradientDeathTest) {
47 EXPECT_DEATH_IF_SUPPORTED({Corrector c(1.0, kRho);},
51 // If rho[1] is negative, the Corrector constructor should crash.
52 TEST(Corrector, NegativeGradientDeathTest) {
54 EXPECT_DEATH_IF_SUPPORTED({Corrector c(1.0, kRho);},
58 TEST(Corrector, ScalarCorrection) {
78 Corrector c(sq_norm, kRho);
86 TEST(Corrector, ScalarCorrectionZeroResidual) {
92 Corrector
[all...]
H A Dresidual_block.cc168 // here avoids constructing the "Corrector" object below in a common case.
175 Corrector correct(squared_norm, rho);
/external/clang/lib/AST/
H A DCommentSema.cpp1010 SimpleTypoCorrector Corrector(Typo);
1012 Corrector.addDecl(ParamVars[i]);
1013 if (Corrector.getBestDecl())
1014 return Corrector.getBestDeclIndex();
1059 SimpleTypoCorrector &Corrector) {
1062 Corrector.addDecl(Param);
1067 Corrector);
1075 SimpleTypoCorrector Corrector(Typo);
1076 CorrectTypoInTParamReferenceHelper(TemplateParameters, Corrector);
1077 if (const NamedDecl *ND = Corrector
1057 CorrectTypoInTParamReferenceHelper( const TemplateParameterList *TemplateParameters, SimpleTypoCorrector &Corrector) argument
[all...]

Completed in 512 milliseconds