Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
changes in 30429
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Kliem committed Sep 9, 2020
1 parent a4fa8cf commit 07b9746
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ size_t get_next_level_simple(\

// Step 1:
for (size_t j = 0; j < n_faces - 1; j++){
intersection(faces[j], faces[n_faces - 1], maybe_newfaces[j], face_length);
unite(faces_coatom_rep[j], faces_coatom_rep[n_faces - 1], maybe_newfaces_coatom_rep[j], face_length_coatom_rep);
intersection(maybe_newfaces[j], faces[j], faces[n_faces - 1], face_length);
unite(maybe_newfaces_coatom_rep[j], faces_coatom_rep[j], faces_coatom_rep[n_faces - 1], face_length_coatom_rep);
is_not_newface[j] = 0;
}

Expand All @@ -227,6 +227,11 @@ size_t get_next_level_simple(\
continue;
}

if (is_not_newface[j]) {
// No further tests needed, if it is empty.
continue;
}

// Step 3:
for (size_t k = 0; k < n_visited_all; k++){
// Testing if maybe_newfaces[j] is contained in one,
Expand Down

0 comments on commit 07b9746

Please sign in to comment.