mirror of https://github.com/CGAL/cgal
Fix polyhedron demo with TBB
This commit is contained in:
parent
1c597a07cf
commit
cc0c46c7ef
|
|
@ -890,7 +890,11 @@ public Q_SLOTS:
|
||||||
tbb::parallel_for(
|
tbb::parallel_for(
|
||||||
tbb::blocked_range<std::size_t>(0, selection.size()),
|
tbb::blocked_range<std::size_t>(0, selection.size()),
|
||||||
Remesh_polyhedron_item_for_parallel_for<Remesh_polyhedron_item>(
|
Remesh_polyhedron_item_for_parallel_for<Remesh_polyhedron_item>(
|
||||||
selection, edges_to_protect, edges_only, target_length, nb_iter, protect, smooth_features));
|
selection, edges_to_protect, edges_only
|
||||||
|
, edge_sizing_type, target_length, error_tol
|
||||||
|
, min_length , max_length, nb_iter
|
||||||
|
, protect, smooth_features)
|
||||||
|
);
|
||||||
|
|
||||||
total_time = time.elapsed();
|
total_time = time.elapsed();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue