-
Notifications
You must be signed in to change notification settings - Fork 20
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
Transformations: Project away non-effect variables #63
Comments
This is an interesting transformation, which is possible to write but seldom supported by most planners action grounders. Does the LP grounder work with existential precs? |
Should work (didn't check though), as long as the existential quantification is in prenex normal form, and not only should it work, it should be significantly more efficient, as e..g will reduce the amount of "ground action" LP atoms that are reachable (if only because the potential number of ground actions decreases). Very good point! An example of a domain with featuring this is the |
Maybe a quick test is in order. |
This is implemented now, but I'll leave this open a few more days to see if I can test how this plays with the LP grounder. |
We'd like to implement a Tarski transformation that takes any STRIPS / Functional STRIPS problem and, for those action schemas that contain parameters (variables) that appear only in the precondition of the schema, but not on the effects, projects this variables into an existentially quantified variable. To illustrate:
would become:
where the action schema has one parameter less.
The text was updated successfully, but these errors were encountered: