-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
xfield_tracer bug #20
Comments
mheistermann
added a commit
to cgg-bern/xfield_tracer_fork
that referenced
this issue
Aug 7, 2024
Reported here by 'yDF8EPJN8': cgg-bern/quadwild-bimdf#20
Thanks for the report! Do you know what impact this bug had? |
I don't know, it's better to ask the author of the code. |
I guess sometimes patches will be missing in the final result. I encountered the problem and solved it by applying this modification. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
bug in the xfield_tracer project in the vert_field_graph.h file at line 1353
if (IndexNodes.count(Nodes[i].Neigh[j].Node>0))continue;
It should be
if (IndexNodes.count(Nodes[i].Neigh[j].Node)>0)continue;
The text was updated successfully, but these errors were encountered: