summaryrefslogtreecommitdiff
path: root/src/Toplex_map
diff options
context:
space:
mode:
authorfgodi <fgodi@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-05-15 14:21:13 +0000
committerfgodi <fgodi@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-05-15 14:21:13 +0000
commit04da883af94d96ea54faf09a1fb87e3b8e0bf847 (patch)
treee1f2fa111168c1f0231a614d8d0de88cb7309fbe /src/Toplex_map
parente94d787c89a7c9a71c86118bc3e048241e9c5ca1 (diff)
fake simplex tree for toplex map
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/toplex_map@3443 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 7bdafb844ee99d834cfd47b37ae32cb52863b4b1
Diffstat (limited to 'src/Toplex_map')
-rw-r--r--src/Toplex_map/example/Fake_simplex_tree.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Toplex_map/example/Fake_simplex_tree.h b/src/Toplex_map/example/Fake_simplex_tree.h
index c3d87e47..6a7e7bdc 100644
--- a/src/Toplex_map/example/Fake_simplex_tree.h
+++ b/src/Toplex_map/example/Fake_simplex_tree.h
@@ -5,7 +5,6 @@
#include <gudhi/Simplex_tree.h>
#include <gudhi/Filtered_toplex_map.h>
-#include <gudhi/Lazy_Toplex_map.h>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/bron_kerbosch_all_cliques.hpp>
@@ -13,9 +12,9 @@
namespace Gudhi {
struct Visitor {
- Lazy_Toplex_map* tm;
+ Toplex_map* tm;
- Visitor(Lazy_Toplex_map* tm)
+ Visitor(Toplex_map* tm)
:tm(tm)
{}
@@ -99,7 +98,7 @@ protected:
template<class OneSkeletonGraph>
void Fake_simplex_tree::insert_graph(const OneSkeletonGraph& skel_graph){
- toplex_maps.emplace(nan(""), new Lazy_Toplex_map());
+ toplex_maps.emplace(nan(""), new Toplex_map());
using vertex_iterator = typename boost::graph_traits<OneSkeletonGraph>::vertex_iterator;
vertex_iterator vi, vi_end;
for (std::tie(vi, vi_end) = boost::vertices(skel_graph); vi != vi_end; ++vi) {