forked from potassco/pddl-instances
-
Notifications
You must be signed in to change notification settings - Fork 1
/
domain.pddl
145 lines (132 loc) · 4.13 KB
/
domain.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
; IPC5 Domain: Rovers SimplePreferences (extension of the Rovers IPC3 domain)
; Author: Patrik Haslum
(define (domain rover)
(:requirements :strips :typing :fluents :preferences)
(:types rover waypoint store camera mode lander objective)
(:predicates
(at ?x - rover ?y - waypoint)
(at_lander ?x - lander ?y - waypoint)
(can_traverse ?r - rover ?x - waypoint ?y - waypoint)
(equipped_for_soil_analysis ?r - rover)
(equipped_for_rock_analysis ?r - rover)
(equipped_for_imaging ?r - rover)
(empty ?s - store)
(have_rock_analysis ?r - rover ?w - waypoint)
(have_soil_analysis ?r - rover ?w - waypoint)
(full ?s - store)
(calibrated ?c - camera ?r - rover)
(supports ?c - camera ?m - mode)
(available ?r - rover)
(visible ?w - waypoint ?p - waypoint)
(have_image ?r - rover ?o - objective ?m - mode)
(communicated_soil_data ?w - waypoint)
(communicated_rock_data ?w - waypoint)
(communicated_image_data ?o - objective ?m - mode)
(at_soil_sample ?w - waypoint)
(at_rock_sample ?w - waypoint)
(visible_from ?o - objective ?w - waypoint)
(store_of ?s - store ?r - rover)
(calibration_target ?i - camera ?o - objective)
(on_board ?i - camera ?r - rover)
(channel_free ?l - lander)
)
(:functions
(traverse_cost ?r - rover ?f - waypoint ?t - waypoint)
(sum-traverse-cost)
)
(:action navigate
:parameters (?x - rover ?y - waypoint ?z - waypoint)
:precondition (and (can_traverse ?x ?y ?z)
(available ?x)
(at ?x ?y)
(visible ?y ?z))
:effect (and (not (at ?x ?y))
(at ?x ?z)
(increase (sum-traverse-cost)
(traverse_cost ?x ?y ?z)))
)
(:action sample_soil
:parameters (?x - rover ?s - store ?p - waypoint)
:precondition (and (at ?x ?p)
(at_soil_sample ?p)
(equipped_for_soil_analysis ?x)
(store_of ?s ?x)
(empty ?s))
:effect (and (not (empty ?s))
(full ?s)
(have_soil_analysis ?x ?p)
(not (at_soil_sample ?p)))
)
(:action sample_rock
:parameters (?x - rover ?s - store ?p - waypoint)
:precondition (and (at ?x ?p)
(at_rock_sample ?p)
(equipped_for_rock_analysis ?x)
(store_of ?s ?x)
(empty ?s))
:effect (and (not (empty ?s))
(full ?s)
(have_rock_analysis ?x ?p)
(not (at_rock_sample ?p)))
)
(:action drop
:parameters (?x - rover ?y - store)
:precondition (and (store_of ?y ?x)
(full ?y))
:effect (and (not (full ?y))
(empty ?y))
)
(:action calibrate
:parameters (?r - rover ?i - camera ?t - objective ?w - waypoint)
:precondition (and (equipped_for_imaging ?r)
(calibration_target ?i ?t)
(at ?r ?w)
(visible_from ?t ?w)
(on_board ?i ?r))
:effect (calibrated ?i ?r)
)
(:action take_image
:parameters (?r - rover ?p - waypoint ?o - objective ?i - camera ?m - mode)
:precondition (and (calibrated ?i ?r)
(on_board ?i ?r)
(equipped_for_imaging ?r)
(supports ?i ?m)
(visible_from ?o ?p)
(at ?r ?p))
:effect (and (have_image ?r ?o ?m)
(not (calibrated ?i ?r)))
)
(:action communicate_soil_data
:parameters (?r - rover ?l - lander ?p - waypoint
?x - waypoint ?y - waypoint)
:precondition (and (at ?r ?x)
(at_lander ?l ?y)
(have_soil_analysis ?r ?p)
(visible ?x ?y)
(available ?r)
(channel_free ?l))
:effect (communicated_soil_data ?p)
)
(:action communicate_rock_data
:parameters (?r - rover ?l - lander ?p - waypoint
?x - waypoint ?y - waypoint)
:precondition (and (at ?r ?x)
(at_lander ?l ?y)
(have_rock_analysis ?r ?p)
(visible ?x ?y)
(available ?r)
(channel_free ?l))
:effect (communicated_rock_data ?p)
)
(:action communicate_image_data
:parameters (?r - rover ?l - lander ?o - objective ?m - mode
?x - waypoint ?y - waypoint)
:precondition (and (at ?r ?x)
(at_lander ?l ?y)
(have_image ?r ?o ?m)
(visible ?x ?y)
(available ?r)
(channel_free ?l))
:effect (communicated_image_data ?o ?m)
)
)