Skip to content

Commit

Permalink
Relax basic Jacobian Epsilon function
Browse files Browse the repository at this point in the history
  • Loading branch information
RainerKuemmerle committed Jan 28, 2024
1 parent 66fb13b commit 6cd9cc2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion unit_test/test_helper/typed_basic_tests.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ struct FixedSizeEdgeBasicTests : public ::testing::Test {
using EpsilonFunction = std::function<double(const double, const double)>;
using EdgeType = typename std::tuple_element<0, T>::type;

EpsilonFunction epsilon = [](const double, const double) { return 1e-3; };
// TODO(Rainer): Allow parameterization for the epsilon function
EpsilonFunction epsilon = [](const double, const double) { return 1e-2; };

FixedSizeEdgeBasicTests() = default;

Expand Down

0 comments on commit 6cd9cc2

Please sign in to comment.