-
Notifications
You must be signed in to change notification settings - Fork 52
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
add a shortest path challenge #608
Draft
byorgey
wants to merge
17
commits into
main
Choose a base branch
from
BFS
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Commits on Jul 29, 2022
-
Configuration menu - View commit details
-
Copy full SHA for fca8a01 - Browse repository at this point
Copy the full SHA fca8a01View commit details -
Configuration menu - View commit details
-
Copy full SHA for c699ded - Browse repository at this point
Copy the full SHA c699dedView commit details
Commits on Jan 15, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 503aca6 - Browse repository at this point
Copy the full SHA 503aca6View commit details -
update shortest path challenge with latest
main
Still not sure of best way to make it work!
Configuration menu - View commit details
-
Copy full SHA for ac2ea10 - Browse repository at this point
Copy the full SHA ac2ea10View commit details
Commits on Feb 27, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 13e4b88 - Browse repository at this point
Copy the full SHA 13e4b88View commit details
Commits on Jun 10, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 6d5d0b2 - Browse repository at this point
Copy the full SHA 6d5d0b2View commit details
Commits on Nov 24, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 0ce598e - Browse repository at this point
Copy the full SHA 0ce598eView commit details -
iterative deepening does not work!
We really do need a queue of locations. We could create one now via `list.sw` --- i.e. Gödel-encode each coordinate pair as an int, then make a banker's queue with two lists of ints, themselves Gödel-encoded as lists. That sounds super tedious though, might be better to wait until we have real recursive types. Even with queues, getting from one location in the queue to the next is tricky. Have to also store the BFS tree and use it to navigate from one to the next??
Configuration menu - View commit details
-
Copy full SHA for d42046e - Browse repository at this point
Copy the full SHA d42046eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 04d63db - Browse repository at this point
Copy the full SHA 04d63dbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7d66f5f - Browse repository at this point
Copy the full SHA 7d66f5fView commit details -
Iterative deepening DOES work, I was confused =P
Configuration menu - View commit details
-
Copy full SHA for f9a9285 - Browse repository at this point
Copy the full SHA f9a9285View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2f14f92 - Browse repository at this point
Copy the full SHA 2f14f92View commit details -
Configuration menu - View commit details
-
Copy full SHA for f2fc4b4 - Browse repository at this point
Copy the full SHA f2fc4b4View commit details
Commits on Nov 28, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 9a41a18 - Browse repository at this point
Copy the full SHA 9a41a18View commit details
Commits on Dec 5, 2023
-
Configuration menu - View commit details
-
Copy full SHA for d564716 - Browse repository at this point
Copy the full SHA d564716View commit details
Commits on Dec 12, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 8a9a4df - Browse repository at this point
Copy the full SHA 8a9a4dfView commit details
Commits on Jan 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 151f796 - Browse repository at this point
Copy the full SHA 151f796View commit details
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.