-
Notifications
You must be signed in to change notification settings - Fork 10
/
expressions.h
388 lines (297 loc) · 11.4 KB
/
expressions.h
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
// Copyright (C) 2002--2005 Carnegie Mellon University
// Copyright (C) 2019 Google Inc
//
// This file is part of VHPOP.
//
// VHPOP is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// VHPOP is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
// License for more details.
//
// You should have received a copy of the GNU General Public License
// along with VHPOP; if not, write to the Free Software Foundation,
// Inc., #59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// PDDL expressions.
#ifndef EXPRESSIONS_H
#define EXPRESSIONS_H
#include <iostream>
#include <map>
#include <set>
#include "functions.h"
#include "refcount.h"
#include "terms.h"
/* ====================================================================== */
/* Expression. */
struct ValueMap;
/*
* An abstract expression.
*/
struct Expression : public RCObject {
/* Returns the value of this expression in the given state. */
virtual float value(const ValueMap& values) const = 0;
/* Returns an instantiation of this expression. */
virtual const Expression& instantiation(const std::map<Variable, Term>& subst,
const ValueMap& values) const = 0;
protected:
/* Prints this object on the given stream. */
virtual void print(std::ostream& os) const = 0;
friend std::ostream& operator<<(std::ostream& os, const Expression& e);
};
/* Output operator for expressions. */
std::ostream& operator<<(std::ostream& os, const Expression& e);
/* ====================================================================== */
/* Value */
/*
* A constant value.
*/
struct Value : public Expression {
/* Constructs a constant value. */
explicit Value(float value) : value_(value) {}
/* Returns the value of this expression. */
float value() const { return value_; }
/* Returns the value of this expression in the given state. */
virtual float value(const ValueMap& values) const;
/* Returns an instantiation of this expression. */
virtual const Value& instantiation(const std::map<Variable, Term>& subst,
const ValueMap& values) const;
protected:
/* Prints this object on the given stream. */
virtual void print(std::ostream& os) const;
private:
/* The value. */
float value_;
};
/* ====================================================================== */
/* Fluent */
/*
* A fluent.
*/
struct Fluent : public Expression {
/* Returns a fluent with the given function and terms. */
static const Fluent& make(const Function& function,
const std::vector<Term>& terms);
/* Deletes this fluent. */
virtual ~Fluent();
/* Returns the id for this fluent (zero if lifted). */
size_t id() const { return id_; }
/* Returns the function of this fluent. */
const Function& function() const { return function_; }
/* Returns the terms of this fluent. */
const std::vector<Term>& terms() const { return terms_; }
/* Returns the value of this expression in the given state. */
virtual float value(const ValueMap& values) const;
/* Returns this fluent subject to the given substitution. */
const Fluent& substitution(const std::map<Variable, Term>& subst) const;
/* Returns an instantiation of this expression. */
virtual const Expression& instantiation(const std::map<Variable, Term>& subst,
const ValueMap& values) const;
protected:
/* Assigns an id to this fluent. */
void assign_id(bool ground);
/* Prints this object on the given stream. */
virtual void print(std::ostream& os) const;
private:
/* Less-than comparison function object for fluents. */
struct FluentLess
: public std::binary_function<const Fluent*, const Fluent*, bool> {
/* Comparison function. */
bool operator()(const Fluent* f1, const Fluent* f2) const;
};
/* A table of fluents. */
struct FluentTable : std::set<const Fluent*, FluentLess> {
};
/* Table of fluents. */
static FluentTable fluents;
/* Next id for ground fluents. */
static size_t next_id;
/* Unique id for ground fluents (zero if lifted). */
size_t id_;
/* Function of this fluent. */
Function function_;
/* Terms of this fluent. */
std::vector<Term> terms_;
/* Constructs a fluent with the given function. */
explicit Fluent(const Function& function) : function_(function) {}
/* Adds a term to this fluent. */
void add_term(Term term) { terms_.push_back(term); }
};
/*
* Less than function object for fluent pointers.
*/
namespace std {
template<>
struct less<const Fluent*>
: public binary_function<const Fluent*, const Fluent*, bool> {
/* Comparison function operator. */
bool operator()(const Fluent* f1, const Fluent* f2) const {
return f1->id() < f2->id();
}
};
}
/* ====================================================================== */
/* Computation */
/*
* A computation expression.
*/
struct Computation : public Expression {
/* Deletes this computation. */
virtual ~Computation();
/* Returns the first operand for this computation. */
const Expression& operand1() const { return *operand1_; }
/* Returns the second operand for this computation. */
const Expression& operand2() const { return *operand2_; }
protected:
/* Constructs a computation. */
Computation(const Expression& operand1, const Expression& operand2);
private:
/* The first operand for this computation. */
const Expression* operand1_;
/* The second operand for this computation. */
const Expression* operand2_;
};
/* ====================================================================== */
/* Addition */
/*
* An addition.
*/
struct Addition : public Computation {
/* Returns an addition of the two expressions. */
static const Expression& make(const Expression& term1,
const Expression& term2);
/* Returns the value of this expression in the given state. */
virtual float value(const ValueMap& values) const;
/* Returns an instantiation of this expression. */
virtual const Expression& instantiation(const std::map<Variable, Term>& subst,
const ValueMap& values) const;
protected:
/* Prints this object on the given stream. */
virtual void print(std::ostream& os) const;
private:
/* Constructs an addition. */
Addition(const Expression& term1, const Expression& term2)
: Computation(term1, term2) {}
};
/* ====================================================================== */
/* Subtraction */
/*
* A subtraction.
*/
struct Subtraction : public Computation {
/* Returns a subtraction of the two expressions. */
static const Expression& make(const Expression& term1,
const Expression& term2);
/* Returns the value of this expression in the given state. */
virtual float value(const ValueMap& values) const;
/* Returns an instantiation of this expression. */
virtual const Expression& instantiation(const std::map<Variable, Term>& subst,
const ValueMap& values) const;
protected:
/* Prints this object on the given stream. */
virtual void print(std::ostream& os) const;
private:
/* Constructs a subtraction. */
Subtraction(const Expression& term1, const Expression& term2)
: Computation(term1, term2) {}
};
/* ====================================================================== */
/* Multiplication */
/*
* A multiplication.
*/
struct Multiplication : public Computation {
/* Returns a multiplication of the two expressions. */
static const Expression& make(const Expression& factor1,
const Expression& factor2);
/* Returns the value of this expression in the given state. */
virtual float value(const ValueMap& values) const;
/* Returns an instantiation of this expression. */
virtual const Expression& instantiation(const std::map<Variable, Term>& subst,
const ValueMap& values) const;
protected:
/* Prints this object on the given stream. */
virtual void print(std::ostream& os) const;
private:
/* Constructs a multiplication. */
Multiplication(const Expression& factor1, const Expression& factor2)
: Computation(factor1, factor2) {}
};
/* ====================================================================== */
/* Division */
/*
* A division.
*/
struct Division : public Computation {
/* Returns a division of the two expressions. */
static const Expression& make(const Expression& factor1,
const Expression& factor2);
/* Returns the value of this expression in the given state. */
virtual float value(const ValueMap& values) const;
/* Returns an instantiation of this expression. */
virtual const Expression& instantiation(const std::map<Variable, Term>& subst,
const ValueMap& values) const;
protected:
/* Prints this object on the given stream. */
virtual void print(std::ostream& os) const;
private:
/* Constructs a division. */
Division(const Expression& factor1, const Expression& factor2)
: Computation(factor1, factor2) {}
};
/* ====================================================================== */
/* Minimum */
/*
* The minimum of two expressions.
*/
struct Minimum : public Computation {
/* Returns the minimum of the two expressions. */
static const Expression& make(const Expression& operand1,
const Expression& operand2);
/* Returns the value of this expression in the given state. */
virtual float value(const ValueMap& values) const;
/* Returns an instantiation of this expression. */
virtual const Expression& instantiation(const std::map<Variable, Term>& subst,
const ValueMap& values) const;
protected:
/* Prints this object on the given stream. */
virtual void print(std::ostream& os) const;
private:
/* Constructs a minimum. */
Minimum(const Expression& operand1, const Expression& operand2)
: Computation(operand1, operand2) {}
};
/* ====================================================================== */
/* Maximum */
/*
* The maximum of two expressions.
*/
struct Maximum : public Computation {
/* Returns the maximum of the two expressions. */
static const Expression& make(const Expression& operand1,
const Expression& operand2);
/* Returns the value of this expression in the given state. */
virtual float value(const ValueMap& values) const;
/* Returns an instantiation of this expression. */
virtual const Expression& instantiation(const std::map<Variable, Term>& subst,
const ValueMap& values) const;
protected:
/* Prints this object on the given stream. */
virtual void print(std::ostream& os) const;
private:
/* Constructs a maximum. */
Maximum(const Expression& operand1, const Expression& operand2)
: Computation(operand1, operand2) {}
};
/* ====================================================================== */
/* ValueMap */
/*
* Mapping from fluents to values.
*/
struct ValueMap : public std::map<const Fluent*, float> {
};
#endif /* EXPRESSIONS_H */