From 58c77ecd1c09c1cf116be44c1a7e9d18cd99970b Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Thu, 1 Dec 2016 16:42:46 +0000 Subject: Remove traces from tangential Tests the limits for choose_n_farthest_points and fix random git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@1808 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 53eec1efbc138080d1b202c2cdd4e7ff8cdde266 --- src/Tangential_complex/include/gudhi/Tangential_complex/config.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/Tangential_complex') diff --git a/src/Tangential_complex/include/gudhi/Tangential_complex/config.h b/src/Tangential_complex/include/gudhi/Tangential_complex/config.h index 98a1b14f..ffefcd6b 100644 --- a/src/Tangential_complex/include/gudhi/Tangential_complex/config.h +++ b/src/Tangential_complex/include/gudhi/Tangential_complex/config.h @@ -26,8 +26,7 @@ #include // ========================= Debugging & profiling ============================= -#define GUDHI_TC_PROFILING -#define DEBUG_TRACES +// #define GUDHI_TC_PROFILING // #define GUDHI_TC_VERY_VERBOSE // #define GUDHI_TC_PERFORM_EXTRA_CHECKS // #define GUDHI_TC_SHOW_DETAILED_STATS_FOR_INCONSISTENCIES -- cgit v1.2.3 From ce1dd7df37c459e666372a234448383417f38753 Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Fri, 2 Dec 2016 07:58:53 +0000 Subject: Re-indent CGAL templates for readibility git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@1811 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 40a44ba88beead6e8a2aba73d8975216b4710677 --- .../include/gudhi/Tangential_complex.h | 38 ++++++++++++---------- 1 file changed, 20 insertions(+), 18 deletions(-) (limited to 'src/Tangential_complex') diff --git a/src/Tangential_complex/include/gudhi/Tangential_complex.h b/src/Tangential_complex/include/gudhi/Tangential_complex.h index 7cf5c498..e748d3b7 100644 --- a/src/Tangential_complex/include/gudhi/Tangential_complex.h +++ b/src/Tangential_complex/include/gudhi/Tangential_complex.h @@ -121,11 +121,12 @@ class Vertex_data { * \tparam Triangulation_ is the type used for storing the local regular triangulations. We highly recommend to use the default value (`CGAL::Regular_triangulation`). * */ -template < -typename Kernel_, // ambiant kernel -typename DimensionTag, // intrinsic dimension -typename Concurrency_tag = CGAL::Parallel_tag, -typename Triangulation_ = CGAL::Default +template +< + typename Kernel_, // ambiant kernel + typename DimensionTag, // intrinsic dimension + typename Concurrency_tag = CGAL::Parallel_tag, + typename Triangulation_ = CGAL::Default > class Tangential_complex { typedef Kernel_ K; @@ -136,19 +137,20 @@ class Tangential_complex { typedef typename CGAL::Default::Get < - Triangulation_, - CGAL::Regular_triangulation - < - CGAL::Epick_d, - CGAL::Triangulation_data_structure - < - typename CGAL::Epick_d::Dimension, - CGAL::Triangulation_vertex >, Vertex_data >, - CGAL::Triangulation_full_cell > > - > - > + Triangulation_, + CGAL::Regular_triangulation + < + CGAL::Epick_d, + CGAL::Triangulation_data_structure + < + typename CGAL::Epick_d::Dimension, + CGAL::Triangulation_vertex + < + CGAL::Regular_triangulation_traits_adapter< CGAL::Epick_d >, Vertex_data + >, + CGAL::Triangulation_full_cell > > + > + > >::type Triangulation; typedef typename Triangulation::Geom_traits Tr_traits; typedef typename Triangulation::Weighted_point Tr_point; -- cgit v1.2.3