HomeSort by relevance Sort by last modified time
    Searched refs:Corrector (Results 1 - 5 of 5) sorted by null

  /external/ceres-solver/internal/ceres/
corrector.h 41 // Corrector is responsible for applying the second order correction
49 class Corrector {
66 explicit Corrector(double sq_norm, const double rho[3]);
corrector.cc 31 #include "ceres/corrector.h"
40 Corrector::Corrector(double sq_norm, const double rho[3]) {
104 void Corrector::CorrectResiduals(int num_rows, double* residuals) {
112 void Corrector::CorrectJacobian(int num_rows,
corrector_test.cc 31 #include "ceres/corrector.h"
44 // 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) {
66 // corrector.cc, alpha = 0 whenever rho'' < 0.
78 Corrector c(sq_norm, kRho)
    [all...]
residual_block.cc 37 #include "ceres/corrector.h"
168 // here avoids constructing the "Corrector" object below in a common case.
175 Corrector correct(squared_norm, rho);
  /external/clang/lib/AST/
CommentSema.cpp     [all...]

Completed in 139 milliseconds