Skip to content

Commit

Permalink
added missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
drexlerd committed Mar 6, 2024
1 parent 9caf93e commit e7451b6
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions tests/novelty/gripper/p-2-0.pddl
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@



(define (problem gripper-2)
(:domain gripper-strips)
(:objects left right ball1 ball2 )
(:init
(room rooma)
(room roomb)
(gripper left)
(gripper right)
(ball ball1)
(ball ball2)
(free left)
(free right)
(at ball1 rooma)
(at ball2 rooma)
(at-robby rooma)
)
(:goal
(and
(at ball1 roomb)
(at ball2 roomb)
)
)
)


0 comments on commit e7451b6

Please sign in to comment.