Reuse one line intersector for all obstacle candidates of a profile - #1008
Open
sachabaclet wants to merge 1 commit into
Open
Reuse one line intersector for all obstacle candidates of a profile#1008sachabaclet wants to merge 1 commit into
sachabaclet wants to merge 1 commit into
Conversation
For every candidate wall or ground border of a cut profile, addGroundBuildingCutPts called LineSegment.intersection, which creates a new RobustLineIntersector and its internal arrays on each call. A JFR recording of an urban run with reflections showed this single call site producing 29% of the allocation pressure of the whole computation. The intersector is now created once per profile and reused for every candidate. The returned coordinate was already copied right after the test, so the reuse is safe. The list of new cut points also becomes an ArrayList instead of a LinkedList. The computed intersections are exactly the ones LineSegment.intersection returns, so the results are unchanged. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
pierromond
approved these changes
Jul 27, 2026
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.
The problem
For every candidate wall or ground border of a cut profile,
addGroundBuildingCutPtscalledLineSegment.intersection, which creates a newRobustLineIntersectorand its internal arrays on each call. A JFR recording of an urban run with order-2 reflections showed this single call site producing 29% of the allocation pressure of the whole computation.The change (+6/−2 lines)
RobustLineIntersectoris created per profile and reused for every candidate. The intersection test is exactly whatLineSegment.intersectiondoes internally, so the computed coordinates are identical. The returned coordinate was already copied right after the test, which makes the reuse safe.ArrayListinstead of aLinkedList.