Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mvieth authored Jan 6, 2024
1 parent 32c287f commit e2cda45
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ CorrespondenceEstimation<PointSource, PointTarget, Scalar>::determineCorresponde
double max_dist_sqr = max_distance * max_distance;

#pragma omp parallel for default(none) \
shared(max_dist_sqr, per_thread_correspondences) firstprivate(index, distance) \
num_threads(num_threads_)
shared(max_dist_sqr, per_thread_correspondences) firstprivate(index, distance) \
num_threads(num_threads_)
// Iterate over the input set of source indices
for (int i = 0; i < static_cast<int>(indices_->size()); i++) {
const auto& idx = (*indices_)[i];
Expand Down

0 comments on commit e2cda45

Please sign in to comment.