summaryrefslogtreecommitdiff
path: root/src/Toplex_map/test
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-10-16 14:06:53 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-10-16 14:06:53 +0000
commit418180d74ea25cfc70a272ab7e883d93ecb31e93 (patch)
tree5344546add0836922cc270fd77b7da0344c2e094 /src/Toplex_map/test
parentc71dce7fe646cd4ca4da5f385cb0d97535e4d941 (diff)
Rename Lazy_Toplex_map accordingly to code conventions
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/toplex_map@3957 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 7e73d088dbc458f42219e6f7a50baf98d8db65ed
Diffstat (limited to 'src/Toplex_map/test')
-rw-r--r--src/Toplex_map/test/lazy_toplex_map_unit_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Toplex_map/test/lazy_toplex_map_unit_test.cpp b/src/Toplex_map/test/lazy_toplex_map_unit_test.cpp
index 77d464ae..5d71c295 100644
--- a/src/Toplex_map/test/lazy_toplex_map_unit_test.cpp
+++ b/src/Toplex_map/test/lazy_toplex_map_unit_test.cpp
@@ -1,6 +1,6 @@
#include <iostream>
#include <vector>
-#include <gudhi/Lazy_Toplex_map.h>
+#include <gudhi/Lazy_toplex_map.h>
#define BOOST_TEST_DYN_LINK
@@ -8,9 +8,9 @@
#include <boost/test/unit_test.hpp>
BOOST_AUTO_TEST_CASE(toplex_map) {
- using Vertex = Gudhi::Lazy_Toplex_map::Vertex;
+ using Vertex = Gudhi::Lazy_toplex_map::Vertex;
- Gudhi::Lazy_Toplex_map tm;
+ Gudhi::Lazy_toplex_map tm;
std::cout << "insert_simplex {1, 2, 3, 4}" << std::endl;
std::vector<Vertex> sigma1 = {1, 2, 3, 4};
tm.insert_simplex(sigma1);