-
Notifications
You must be signed in to change notification settings - Fork 14
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
Fixes for plan repair #168
Merged
Merged
Conversation
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
The HDDL domains that are generated in plan repair for rewrite sometimes violate the normal constraint that all nodes be ground. Note: This should probably be fixed, but might happen only at the cost of making the resulting domains much less efficient to plan. Changes here allow this normal constraint to be overridden, but note that if we do, the resulting HDDL plans might count as ill-formed to a verifier. Also add a new `find-all-tree-nodes-if` to the PLAN-TREE (enhanced plan tree) package.
Now we load all the problems and insert them into a single problem set after loading. Did this to support testing the enhanced plan tree (and additional modifications in the current feature branch).
Have been using this as a crude way to copy trees and plans (for HDDL generation) and found it was quite badly buggy.
There were some cases where parameters were not properly bound top-down.
Pulled a large number of loops, etc. out of too-large functions for more understandable code.
Many print statements, etc. Saving before I remove them.
Did not return the proper value when the task was not ground and handled by `:warn` or `:ignore`.
d66a7a1
to
e782d43
Compare
e782d43
to
bd1612e
Compare
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.
Miscellaneous fixes, notably to HDDL format plan generation, needed for plan repair experiments to work.