patrick
/
plasp
Archived
1
0
Fork 0
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/storage-problem.pddl

26 lines
546 B
Plaintext

(define (problem storage-1)
(:domain Storage-Propositional)
(:objects
depot0-1-1 container-0-0 - storearea
hoist0 - hoist
crate0 - crate
container0 - container
depot0 - depot
loadarea - transitarea)
(:init
(in depot0-1-1 depot0)
(on crate0 container-0-0)
(in crate0 container0)
(in container-0-0 container0)
(connected loadarea container-0-0)
(connected container-0-0 loadarea)
(connected depot0-1-1 loadarea)
(connected loadarea depot0-1-1)
(at hoist0 depot0-1-1)
(available hoist0))
(:goal (and
(in crate0 depot0)))
)