Skip to content

Commit

Permalink
tweak test tol
Browse files Browse the repository at this point in the history
Signed-off-by: artivis <[email protected]>
  • Loading branch information
artivis committed Mar 9, 2024
1 parent 2dcfecf commit 3c26c47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/common_tester.h
Original file line number Diff line number Diff line change
Expand Up @@ -1063,8 +1063,8 @@ class JacobianTester
Jrinv = tan.rjacinv();
Jlinv = tan.ljacinv();

EXPECT_EIGEN_NEAR(Jacobian::Identity(), Jr*Jrinv);
EXPECT_EIGEN_NEAR(Jacobian::Identity(), Jl*Jlinv);
EXPECT_EIGEN_NEAR(Jacobian::Identity(), Jr*Jrinv, tol_);
EXPECT_EIGEN_NEAR(Jacobian::Identity(), Jl*Jlinv, tol_);
}

void evalActJac()
Expand Down

0 comments on commit 3c26c47

Please sign in to comment.