Skip to content

Commit

Permalink
Merge branch 'develop' into feature/no_hiding-2
Browse files Browse the repository at this point in the history
  • Loading branch information
varunagrawal authored Oct 9, 2024
2 parents 8d03e71 + c97b9a9 commit 284fdc0
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
8 changes: 5 additions & 3 deletions gtsam/nonlinear/DoglegOptimizerImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,14 @@ VectorValues DoglegOptimizerImpl::ComputeBlend(double delta, const VectorValues&
double tau1 = (-b + sqrt_b_m4ac) / (2.*a);
double tau2 = (-b - sqrt_b_m4ac) / (2.*a);

// Determine correct solution accounting for machine precision
double tau;
if(0.0 <= tau1 && tau1 <= 1.0) {
assert(!(0.0 <= tau2 && tau2 <= 1.0));
const double eps = std::numeric_limits<double>::epsilon();
if(-eps <= tau1 && tau1 <= 1.0 + eps) {
assert(!(-eps <= tau2 && tau2 <= 1.0 + eps));
tau = tau1;
} else {
assert(0.0 <= tau2 && tau2 <= 1.0);
assert(-eps <= tau2 && tau2 <= 1.0 + eps);
tau = tau2;
}

Expand Down
18 changes: 18 additions & 0 deletions tests/testDoglegOptimizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,24 @@ TEST(DoglegOptimizer, ComputeBlend) {
DOUBLES_EQUAL(Delta, xb.vector().norm(), 1e-10);
}

/* ************************************************************************* */
TEST(DoglegOptimizer, ComputeBlendEdgeCases) {
// Test Derived from Issue #1861
// Evaluate ComputeBlend Behavior for edge cases where the trust region
// is equal in size to that of the newton step or the gradient step.

// Simulated Newton (n) and Gradient Descent (u) step vectors w/ ||n|| > ||u||
VectorValues::Dims dims;
dims[0] = 3;
VectorValues n(Vector3(0.3233546123, -0.2133456123, 0.3664345632), dims);
VectorValues u(Vector3(0.0023456342, -0.04535687, 0.087345661212), dims);

// Test upper edge case where trust region is equal to magnitude of newton step
EXPECT(assert_equal(n, DoglegOptimizerImpl::ComputeBlend(n.norm(), u, n, false)));
// Test lower edge case where trust region is equal to magnitude of gradient step
EXPECT(assert_equal(u, DoglegOptimizerImpl::ComputeBlend(u.norm(), u, n, false)));
}

/* ************************************************************************* */
TEST(DoglegOptimizer, ComputeDoglegPoint) {
// Create an arbitrary Bayes Net
Expand Down

0 comments on commit 284fdc0

Please sign in to comment.