summaryrefslogtreecommitdiff
path: root/bottleneck/tests/test_hera_bottleneck.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bottleneck/tests/test_hera_bottleneck.cpp')
-rw-r--r--bottleneck/tests/test_hera_bottleneck.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/bottleneck/tests/test_hera_bottleneck.cpp b/bottleneck/tests/test_hera_bottleneck.cpp
index b31b2b7..c74e800 100644
--- a/bottleneck/tests/test_hera_bottleneck.cpp
+++ b/bottleneck/tests/test_hera_bottleneck.cpp
@@ -562,7 +562,7 @@ TEST_CASE("file cases", "bottleneck_dist")
SECTION("from file:") {
- for (const auto& ts : test_params) {
+ for (auto& ts : test_params) {
bool read_file_A = hera::readDiagramPointSet(dir_prefix + ts.file_1, diagram_A);
bool read_file_B = hera::readDiagramPointSet(dir_prefix + ts.file_2, diagram_B);
REQUIRE(read_file_A);
@@ -575,6 +575,10 @@ TEST_CASE("file cases", "bottleneck_dist")
hera_answer = hera::bottleneckDistExact(diagram_A, diagram_B);
std::pair<int, int> hera_le { longest_edge.first.get_user_id(), longest_edge.second.get_user_id() };
+ // cannot store exact answer in test_list.txt, but need to make sure that Exact is called
+ if (ts.delta == 0.0)
+ ts.delta = 0.00000001;
+
REQUIRE((hera_answer == ts.answer or fabs(hera_answer - ts.answer) <= ts.delta * hera_answer));
REQUIRE((ts.longest_edges.empty() or
std::find(ts.longest_edges.begin(), ts.longest_edges.end(), hera_le) != ts.longest_edges.end()));