This repository has been archived on 2023-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
plasp/tests/data/issues/issue-2.pddl

34 lines
744 B
Plaintext
Raw Normal View History

2016-06-09 18:48:16 +02:00
(define (domain openstacks-netbenefit-numeric-ADL)
(:requirements :typing :adl :numeric-fluents :goal-utilities)
(:types order product)
(:predicates (includes ?o - order ?p - product)
(waiting ?o - order)
(started ?o - order)
(shipped ?o - order)
(delivered ?o - order ?p - product)
(made ?p - product))
(:action open-new-stack
:parameters ()
:precondition (and)
)
(:action start-order
:parameters (?o - order)
:precondition (waiting ?o)
2016-06-09 18:48:16 +02:00
)
(:action make-product
:parameters (?p - product)
:precondition (and (not (made ?p)))
)
(:action ship-order
:parameters (?o - order)
:precondition (and (started ?o))
)
)