-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix no fewer than two issues with the "closest reachable unchecked lo…
…cation" solver: 1. The first location in each region was being double-counted for the purposes of path weight calculations. 2. For unknown and, perhaps, unknowable reasons, paths that go backward through a region were getting inappropriately adjusted too low. 3. Paths that enter a filler region only to turn right back around and exit to a different region in the direction that we just came from would count as walking through the entire filler region. The third one is dubious because ALL filler regions in our map connect EXACTLY two landmark regions, and ALWAYS on opposite sides, so this probably would have never been seen. Resolves #92
- Loading branch information
1 parent
d3a8ca6
commit ce3fa95
Showing
2 changed files
with
85 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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