-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproblem12.pddl
58 lines (56 loc) · 857 Bytes
/
problem12.pddl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
(define (problem unity_1)
(:domain unity_1)
(:objects
q600
trophy_1
sturdy_box_small
p0
('PickCost',)
1
('PlaceCost',)
treasure_chest_large
p1
bb45d4ea-cf3b-46b5-be23-f4097b8db1c5
p2
brown_box
p3
new_box
p4
p5
trophy
p6
)
(:init
(CanMove)
(BConf q600)
(AtBConf q600)
(Openable trophy_1)
(Openable sturdy_box_small)
(Region p0)
(= ('PickCost',))
(= ('PlaceCost',))
(Pose treasure_chest_large)
(AtPose treasure_chest_large)
(Pickable treasure_chest_large)
(Pose bb45d4ea-cf3b-46b5-be23-f4097b8db1c5)
(AtPose bb45d4ea-cf3b-46b5-be23-f4097b8db1c5)
(Pickable bb45d4ea-cf3b-46b5-be23-f4097b8db1c5)
(Pose brown_box)
(AtPose brown_box)
(Pickable brown_box)
(Pose new_box)
(AtPose new_box)
(Pickable new_box)
(Pose sturdy_box_small)
(AtPose sturdy_box_small)
(Pickable sturdy_box_small)
(Pose trophy)
(AtPose trophy)
(Pickable trophy)
)
(:goal
( and
(t r)
)
)
)