Skip to content
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

PDDL 2.1 Support #43

Open
Flamak opened this issue Dec 19, 2022 · 0 comments
Open

PDDL 2.1 Support #43

Flamak opened this issue Dec 19, 2022 · 0 comments
Assignees

Comments

@Flamak
Copy link
Collaborator

Flamak commented Dec 19, 2022

We have reached quite stable and mature version of the modeling capabilities for classical PDDL (1.0), the next stage is to extend towards the most used version - PDDL 2.1 (https://planning.wiki/ref/pddl21/domain).

Since PDDL 2.1 is not backwards compatible with PDDL 1.0, while both have their purpose, I suggest to create one more modeling environment for PDDL 2.1.

The main change in PDDL 2.1 comes in the definition of the action (we can consider the rest of the definition to be the same as PDDL 1.0), where the content of the action should be captured by Blockly as follows:

  • duration takes a numeric constant or an expression with numeric fluents that evaluates to a numeric value at runtime.
  • transition, representing the change of value, there are three of them:
    -- anything -> A, effect what happens at the end of the action - translates to effect (at end (A))
    -- A -> anything, preconditions what needs to hold before the action starts - translates to condition (at start (A))
    -- A -> B, persistent condition or transition - translates to condition (at start (A)) and effects (at start (not (B))), (at end (A))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants