Skip to content

Commit

Permalink
domain initial
Browse files Browse the repository at this point in the history
  • Loading branch information
rezan21 committed Jan 14, 2019
1 parent 4973ea3 commit ebdd2fd
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion domain.pddl
Original file line number Diff line number Diff line change
@@ -1 +1,33 @@
;domain goes here
(define (domain simple-supermarket)
(:requirements :strips :typing :numeric-fluents :durative-actions :conditional-effects)
(:types
location agent item- object

)
(:predicates
(at ?o - object ?l - location)
(notat ?a - agent ?l - location)
(agentfree ?a - agent)
(agentnotfree ?a - agent)
(agentfull ?a - agent)
(agentnotfull ?a -agent)
(on ?i - item ?a - agent)
(noton ?i - item ?a - agent)


)

(:functions
(capacity ?a - agent)
(itemsholding ?a agent)

)

(:durative-action load
:parameters (?i - item ?a - agent ?l - location)
:duration (= ?duration 5)
:condition(
(and(over all(at ?i ?l))(at start(i)))
)
)
)

0 comments on commit ebdd2fd

Please sign in to comment.