Skip to content

Commit

Permalink
domain and simple problem solvable
Browse files Browse the repository at this point in the history
  • Loading branch information
rezan21 committed Jan 17, 2019
1 parent d1d883b commit 40efced
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions supermarket-problem.pddl
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
(define (problem simpleProblem)
(:domain simple-supermarket)
(:objects
x0 x1 x2 x3 - location
x0 x1 - location
a1 - agent
i1 - item
i1 i2 i3 i4 i5 i6 i7 i8 i9 - item
c1 - car

)
Expand All @@ -12,8 +12,16 @@ c1 - car
(at a1 x0)
(at c1 x0)
(at i1 x1)


(at i2 x1)
(at i3 x1)
(at i4 x1)
(at i5 x1)
(at i6 x1)
(at i7 x1)
(at i8 x1)
(at i9 x1)

(hasnotagent c1)
(haspath x0 x1)
(haspath x1 x0)

Expand All @@ -25,6 +33,15 @@ c1 - car
(:goal
(and
(at i1 x0)
(at i2 x0)
(at i3 x0)
(at i4 x0)
(at i5 x0)
(at i6 x0)
(at i7 x0)
(at i8 x0)
(at i9 x0)

)
)

Expand Down

0 comments on commit 40efced

Please sign in to comment.