Skip to content

Commit

Permalink
warning instead of error for self-intersecting
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas-Ulrich committed Jul 16, 2024
1 parent 20226b6 commit 1da10de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/input/SimModSuite.h
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ class SimModSuite : public FullStorageMeshData {
logInfo(PMU_rank()) << "centroids" << centroid[0] << centroid[1] << centroid[2] << "and "
<< centroid2[0] << centroid2[1] << centroid2[2] << std::flush;
}
logError() << PList_size(entities) / 2 << "Self-intersection(s) detected in CAD mesh";
logWarning() << PList_size(entities) / 2 << "Self-intersection(s) detected in CAD mesh";
}
PList_delete(entities);
Progress_delete(prog);
Expand Down
2 changes: 1 addition & 1 deletion src/input/SimModSuiteApf.h
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ class SimModSuiteApf : public ApfMeshInput {
logInfo(PMU_rank()) << "centroids" << centroid[0] << centroid[1] << centroid[2] << "and "
<< centroid2[0] << centroid2[1] << centroid2[2] << std::flush;
}
logError() << PList_size(entities) / 2 << "Self-intersection(s) detected in CAD mesh";
logWarning() << PList_size(entities) / 2 << "Self-intersection(s) detected in CAD mesh";
}
PList_delete(entities);
Progress_delete(prog);
Expand Down

0 comments on commit 1da10de

Please sign in to comment.