Skip to content

Commit

Permalink
[ci] trying to fix ubuntu-24.04 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-tierny committed Sep 12, 2024
1 parent 181ab92 commit f901d0a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/base/discreteMorseSandwich/DiscreteMorseSandwich.h
Original file line number Diff line number Diff line change
Expand Up @@ -471,14 +471,14 @@ namespace ttk {
#endif
this->s1Mapping_.resize(triangulation.getNumberOfEdges(), -1);
}
for(int i = 0; i < dim + 1; ++i) {
for(int i = 0; i < dim; ++i) {
#ifdef TTK_ENABLE_OPENMP
#pragma omp task
#endif
this->pairedCritCells_[i].resize(
this->dg_.getNumberOfCells(i, triangulation), false);
}
for(int i = 1; i < dim + 1; ++i) {
for(int i = 1; i < dim; ++i) {
#ifdef TTK_ENABLE_OPENMP
#pragma omp task
#endif
Expand Down Expand Up @@ -513,7 +513,7 @@ namespace ttk {
mutable std::vector<EdgeSimplex> critEdges_{};
mutable std::array<std::vector<bool>, 4> pairedCritCells_{};
mutable std::vector<bool> onBoundary_{};
mutable std::vector<std::vector<SimplexId>, 4> critCellsOrder_{};
mutable std::array<std::vector<SimplexId>, 4> critCellsOrder_{};
mutable std::vector<std::vector<SimplexId>> s2Children_{};

bool ComputeMinSad{true};
Expand Down

0 comments on commit f901d0a

Please sign in to comment.