-
Notifications
You must be signed in to change notification settings - Fork 200
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
Infinite recursion with i_overlay 1.8 #1270
Comments
This should be temporarily resolved in #1271, which was just published in |
Tagging you @NailxSharipov in case it's helpful to see this. Looks like the latest 1.8.0 release broke our build, so we're pinning to 1.7.x until one of us can investigate further. |
michaelkirk
added a commit
that referenced
this issue
Nov 26, 2024
i_overlay 1.8 introduced a new trait based approach which allows us to remove some of our own trait juggling. However, our old friend, the orphan trait rule, prevents this from happening easily. For now, I'm creating wrapper structs in geo for this algo. i_overlay 1.8 also introduced a new method signature for doing bool_ops, removing the old ones. This caused our trait juggling to infinitely recurse: See #1270 Now that we're using the new methods, the problem is avoided.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I had the previous issue #1174, which was fixed in 0.29 by switching to
i_overlay
. It worked at first withi_overlay 1.7.2
. However, after upgrading toi_overlay 1.7.2
, I get a an infinite recursion whenever I try to find an intersection between a polygon and a line.The input is the same as in #1174:
Here is the stack trace created with GDB:
The text was updated successfully, but these errors were encountered: