summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-05-03 09:04:17 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-05-03 09:04:17 +0200
commit8edcb434b45ef07828f8111dedcbed024f469314 (patch)
treee7f964bb3fa788a85440c58e60f88538fde5abc7 /src
parentebee08bfaa36603170aaa0799923c84896652f66 (diff)
Fix TBB Warning: tbb/task_scheduler_init.h is deprecated.
Diffstat (limited to 'src')
-rw-r--r--src/Persistent_cohomology/example/rips_persistence_via_boundary_matrix.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/Persistent_cohomology/example/rips_persistence_via_boundary_matrix.cpp b/src/Persistent_cohomology/example/rips_persistence_via_boundary_matrix.cpp
index db456f70..8c5742aa 100644
--- a/src/Persistent_cohomology/example/rips_persistence_via_boundary_matrix.cpp
+++ b/src/Persistent_cohomology/example/rips_persistence_via_boundary_matrix.cpp
@@ -17,10 +17,6 @@
#include <boost/program_options.hpp>
-#ifdef GUDHI_USE_TBB
-#include <tbb/task_scheduler_init.h>
-#endif
-
#include <string>
#include <vector>
@@ -67,11 +63,6 @@ int main(int argc, char * argv[]) {
std::clog << "The complex contains " << st.num_simplices() << " simplices \n";
std::clog << " and has dimension " << st.dimension() << " \n";
-#ifdef GUDHI_USE_TBB
- // Unnecessary, but clarifies which operations are parallel.
- tbb::task_scheduler_init ts;
-#endif
-
// Sort the simplices in the order of the filtration
st.initialize_filtration();
int count = 0;
@@ -81,10 +72,6 @@ int main(int argc, char * argv[]) {
// Convert to a more convenient representation.
Gudhi::Hasse_complex<> hcpx(st);
-#ifdef GUDHI_USE_TBB
- ts.terminate();
-#endif
-
// Free some space.
delete &st;