Skip to content

Commit

Permalink
remove tol from assert_equal
Browse files Browse the repository at this point in the history
  • Loading branch information
mcm001 committed Jan 2, 2025
1 parent d04623d commit 4576d7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gtsam/base/TestableAssertions.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace gtsam {
/**
* Equals testing for basic types
*/
inline bool assert_equal(const Key& expected, const Key& actual, double tol = 0.0) {
inline bool assert_equal(const Key& expected, const Key& actual) {
// TODO - why isn't tol used?
if(expected != actual) {
std::cout << "Not equal:\nexpected: " << expected << "\nactual: " << actual << std::endl;
Expand Down

0 comments on commit 4576d7d

Please sign in to comment.