summaryrefslogtreecommitdiff
path: root/src/Nerve_GIC
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-02-05 10:34:18 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-02-05 10:34:18 +0100
commitc6b5f941e94fdabb3649637d195d3d85c645796b (patch)
treeee846fba11bef90672f03e2a52a8bce89adcfbb4 /src/Nerve_GIC
parent8e888b8be306c32c561396ca80b47a0aa9f9f859 (diff)
tbb::mutex was still there
Diffstat (limited to 'src/Nerve_GIC')
-rw-r--r--src/Nerve_GIC/include/gudhi/GIC.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Nerve_GIC/include/gudhi/GIC.h b/src/Nerve_GIC/include/gudhi/GIC.h
index 61db6508..348dcc85 100644
--- a/src/Nerve_GIC/include/gudhi/GIC.h
+++ b/src/Nerve_GIC/include/gudhi/GIC.h
@@ -895,7 +895,7 @@ class Cover_complex {
// Compute the geodesic distances to subsamples with Dijkstra
#ifdef GUDHI_USE_TBB
if (verbose) std::clog << "Computing geodesic distances (parallelized)..." << std::endl;
- std::mutex coverMutex; tbb::mutex mindistMutex;
+ std::mutex coverMutex; std::mutex mindistMutex;
tbb::parallel_for(0, m, [&](int i){
int seed = voronoi_subsamples[i];
std::vector<double> dmap(n);