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.cpp16
1 files changed, 13 insertions, 3 deletions
diff --git a/bottleneck/tests/test_hera_bottleneck.cpp b/bottleneck/tests/test_hera_bottleneck.cpp
index f22e415..c74e800 100644
--- a/bottleneck/tests/test_hera_bottleneck.cpp
+++ b/bottleneck/tests/test_hera_bottleneck.cpp
@@ -159,6 +159,9 @@ TEST_CASE("infinity points", "bottleneckDistApprox")
double d = hera::bottleneckDistApprox<>(diagram_A, diagram_B, delta);
double corr_answer = 1.0;
REQUIRE( fabs(d - corr_answer) <= delta * corr_answer);
+
+ double exact_d = hera::bottleneckDistExact<>(diagram_A, diagram_B);
+ REQUIRE(exact_d == corr_answer);
}
SECTION("two points at infinity") {
@@ -559,15 +562,23 @@ 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);
REQUIRE(read_file_B);
- double hera_answer = hera::bottleneckDistApprox(diagram_A, diagram_B, ts.delta, longest_edge, true);
+ double hera_answer;
+ if (ts.delta > 0)
+ hera_answer = hera::bottleneckDistApprox(diagram_A, diagram_B, ts.delta, longest_edge, true);
+ else
+ 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()));
@@ -604,7 +615,6 @@ TEST_CASE("file cases", "bottleneck_dist")
// << hera_answer_exact << std::endl;
// }
REQUIRE( (not check_longest_edge_cost or fabs(hera_le_cost - hera_answer_exact) < 0.0001 * hera_answer_exact) );
- std::cout << ts << " PASSED " << std::endl;
}
}