Do not error out in Bamg - #409
Merged
Merged
Conversation
Thanks-to: Chris Douglas @cmdoug
There was a problem hiding this comment.
Pull request overview
Warning
Copilot couldn't run its full agentic review because it didn't start before the timeout. Make sure your repository has a runner available, or add a copilot-code-review.yml file specifying one with the runs-on attribute. See the docs for more details.
This PR changes BAMG mesh-building behavior to avoid hard-failing when border points are extremely close, replacing the error with a warning and adjusting subdomain orientation handling.
Changes:
- Replace
ExecErrorwith a conditional warning message whenlmin < diameter*1e-7. - Change how
Gh->subdomains[i].sensis computed fromNbseg.
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
| long Nbseg =k->Nbseg(stack,index); | ||
| long n= Max(1L,Abs(Nbseg)); | ||
| Gh->subdomains[i].sens = Nbseg >0 ? 1 : -1; | ||
| Gh->subdomains[i].sens = Nbseg < 0 ? -1 : 1; |
Comment on lines
+539
to
+540
| if(lmin < diameter*1e-7 && verbosity) | ||
| cout << " Warning: border points are very close < diameter*1e-7." << endl; |
| if(lmin<diameter*1e-7) { | ||
| ExecError(" Error points border points to close < diameter*1e-7 ");} | ||
| if(lmin < diameter*1e-7 && verbosity) | ||
| cout << " Warning: border points are very close < diameter*1e-7." << endl; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.