summaryrefslogtreecommitdiff
path: root/src/Toplex_map/test/toplex_map_unit_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Toplex_map/test/toplex_map_unit_test.cpp')
-rw-r--r--src/Toplex_map/test/toplex_map_unit_test.cpp28
1 files changed, 2 insertions, 26 deletions
diff --git a/src/Toplex_map/test/toplex_map_unit_test.cpp b/src/Toplex_map/test/toplex_map_unit_test.cpp
index 3f4d96c2..b7a9251c 100644
--- a/src/Toplex_map/test/toplex_map_unit_test.cpp
+++ b/src/Toplex_map/test/toplex_map_unit_test.cpp
@@ -1,5 +1,4 @@
#include <iostream>
-#include <gudhi/Lazy_toplex_map.h>
#include <gudhi/Filtered_toplex_map.h>
#include <gudhi/Fake_simplex_tree.h>
@@ -9,6 +8,8 @@
using namespace Gudhi;
+typedef Toplex_map::Vertex Vertex;
+
std::vector<Vertex> sigma1 = {1, 2, 3, 4};
std::vector<Vertex> sigma2 = {5, 2, 3, 6};
std::vector<Vertex> sigma3 = {5};
@@ -33,18 +34,6 @@ BOOST_AUTO_TEST_CASE(toplexmap) {
BOOST_CHECK(!K.membership(sigma6));
}
-BOOST_AUTO_TEST_CASE(ltoplexmap) {
- Lazy_Toplex_map K;
- K.insert_simplex(sigma1);
- K.insert_simplex(sigma2);
- K.insert_simplex(sigma3);
- K.insert_simplex(sigma6);
- K.insert_simplex(sigma7);
- BOOST_CHECK(K.membership(sigma4));
- BOOST_CHECK(!K.membership(sigma5));
- K.contraction(4,5);
- BOOST_CHECK(!K.membership(sigma6));
-}
BOOST_AUTO_TEST_CASE(ftoplexmap) {
Filtered_toplex_map K;
@@ -56,16 +45,3 @@ BOOST_AUTO_TEST_CASE(ftoplexmap) {
BOOST_CHECK(K.filtration(sigma3)==1.);
}
-/*
-BOOST_AUTO_TEST_CASE(toplexmap_candidates) {
- Toplex_map K;
- K.insert_simplex(sigma1);
- K.insert_simplex(sigma2);
- K.remove_simplex(sigma1);
- K.remove_simplex(sigma2);
- auto c = K.candidates();
- BOOST_CHECK(c.count(get_key(sigma1)));
- BOOST_CHECK(c.count(get_key(sigma2)));
- BOOST_CHECK(c.size()==2);
-}
-*/