-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformulas.h
492 lines (413 loc) · 18.2 KB
/
formulas.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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
#ifndef FORMULAS_H
#define FORMULAS_H
#include "global.h"
#include "hashing.h"
#include "predicates.h"
#include "terms.h"
#include <iostream>
#include <set>
#include <vector>
#include <list>
#ifdef TRUE
#undef TRUE
#endif
#ifdef FALSE
#undef FALSE
#endif
class atomList_t;
class atomListList_t;
class state_t;
class problem_t;
class FunctionTable;
class Expression;
class ValueMap;
class Problem;
class FormulaList;
class Atom;
class AtomSet : public hashing::hash_set<const Atom*> { };
class Disjunction;
/*******************************************************************************
*
* state formula
*
******************************************************************************/
class StateFormula
{
private:
mutable size_t ref_count_;
protected:
StateFormula() : ref_count_(0) { }
public:
static const StateFormula& TRUE;
static const StateFormula& FALSE;
static void register_use( const StateFormula* f )
{
#ifdef MEM_DEBUG
if(f) std::cerr << "<for>: inc-ref-count " << f << " = " << f->ref_count_+1 << std::endl;
#endif
if( f ) ++f->ref_count_;
}
static void unregister_use( const StateFormula* f )
{
#ifdef MEM_DEBUG
if(f) std::cerr << "<for>: dec-ref-count " << f << " = " << f->ref_count_-1 << std::endl;
#endif
if( f && (--f->ref_count_ == 0) ) delete f;
}
virtual ~StateFormula() { }
//virtual size_t size() const = 0;
bool tautology( void ) const { return this == &TRUE; }
bool contradiction( void ) const { return this == &FALSE; }
virtual bool holds( const AtomSet& atoms, const ValueMap& values ) const = 0;
virtual bool holds( const state_t& state ) const = 0;
virtual const StateFormula& flatten( bool negated = false ) const = 0;
virtual void translate( atomList_t &alist ) const = 0;
virtual void translate( atomListList_t &alist ) const = 0;
virtual const StateFormula& instantiation( const SubstitutionMap& subst,
const problem_t& problem ) const = 0;
virtual bool operator==( const StateFormula &formula ) const = 0;
virtual void print( std::ostream& os, const PredicateTable& predicates,
const FunctionTable& functions,
const TermTable& terms) const = 0;
virtual bool match( const StateFormula &formula, VarSubstMap &subst ) const = 0;
virtual void free_vars( VariableList &context, VariableList &vars ) const = 0;
virtual bool analyze( PredicateTable &predicates, TermTable &terms,
std::map<const StateFormula*,const Atom*> &hash ) const = 0;
virtual const StateFormula& rewrite( std::map<const StateFormula*,const Atom*> &hash ) const = 0;
virtual void generate_atoms( void ) const = 0;
};
class FormulaList : public std::vector<const StateFormula*> { };
/*******************************************************************************
*
* constant
*
******************************************************************************/
class Constant : public StateFormula
{
private:
static const Constant TRUE_;
static const Constant FALSE_;
bool value_;
Constant( bool value );
friend class StateFormula;
public:
//virtual size_t size() const { return 1; }
virtual bool holds( const AtomSet& atoms, const ValueMap& values ) const;
virtual bool holds( const state_t& state ) const;
virtual const StateFormula& flatten( bool negated = false ) const;
virtual void translate( atomList_t &alist ) const;
virtual void translate( atomListList_t &alist ) const;
virtual const Constant& instantiation( const SubstitutionMap& subst,
const problem_t& problem ) const;
virtual bool operator==( const StateFormula &formula ) const;
virtual void print( std::ostream& os, const PredicateTable& predicates,
const FunctionTable& functions,
const TermTable& terms ) const;
virtual bool match( const StateFormula &formula, VarSubstMap &subst ) const;
virtual void free_vars( VariableList &context, VariableList &vars ) const;
virtual bool analyze( PredicateTable &predicates, TermTable &terms,
std::map<const StateFormula*,const Atom*> &hash ) const;
virtual const StateFormula& rewrite( std::map<const StateFormula*,const Atom*> &hash ) const;
virtual void generate_atoms( void ) const;
};
/*******************************************************************************
*
* atom
*
******************************************************************************/
class Atom : public StateFormula
{
private:
// Less-than comparison function object for atoms.
class AtomLess : public std::binary_function<const Atom*, const Atom*, bool>
{
public:
bool operator()( const Atom* a1, const Atom* a2 ) const;
};
class AtomTable : public std::set<const Atom*,AtomLess> { };
static AtomTable atoms;
Predicate predicate_;
TermList terms_;
Atom( Predicate predicate );
void add_term( Term term ) { terms_.push_back( term ); }
public:
static const Atom& make_atom( Predicate predicate, const TermList& terms );
virtual ~Atom();
//virtual size_t size() const { return 1; }
Predicate predicate( void ) const { return( predicate_ ); }
size_t arity( void ) const { return( terms_.size() ); }
Term term( size_t i ) const { return( terms_[i] ); }
virtual bool holds( const AtomSet& atoms, const ValueMap& values ) const;
virtual bool holds( const state_t& state ) const;
virtual const StateFormula& flatten( bool negated = false ) const;
virtual void translate( atomList_t &alist ) const;
virtual void translate( atomListList_t &alist ) const;
const Atom& substitution( const SubstitutionMap& subst ) const;
virtual const StateFormula& instantiation( const SubstitutionMap& subst,
const problem_t& problem ) const;
virtual bool operator==( const StateFormula &formula ) const;
virtual void print( std::ostream& os, const PredicateTable& predicates,
const FunctionTable& functions,
const TermTable& terms ) const;
void printXML( std::ostream& os, const PredicateTable& predicates,
const FunctionTable& functions,
const TermTable& terms ) const;
virtual bool match( const StateFormula &formula, VarSubstMap &subst ) const;
virtual void free_vars( VariableList &context, VariableList &vars ) const;
virtual bool analyze( PredicateTable &predicates, TermTable &terms,
std::map<const StateFormula*,const Atom*> &hash ) const;
virtual const StateFormula& rewrite( std::map<const StateFormula*,const Atom*> &hash ) const;
virtual void generate_atoms( void ) const;
};
/*******************************************************************************
*
* equality
*
******************************************************************************/
class Equality : public StateFormula
{
private:
Term term1_;
Term term2_;
public:
Equality( Term term1, Term term2 );
virtual ~Equality();
Term term1( void ) const { return( term1_ ); }
Term term2( void ) const { return( term2_ ); }
virtual bool holds( const AtomSet& atoms, const ValueMap& values ) const;
virtual bool holds( const state_t& state ) const;
virtual const StateFormula& flatten( bool negated = false ) const;
virtual void translate( atomList_t &alist ) const;
virtual void translate( atomListList_t &alist ) const;
virtual const StateFormula& instantiation( const SubstitutionMap& subst,
const problem_t& problem ) const;
virtual bool operator==( const StateFormula &formula ) const;
virtual void print( std::ostream& os, const PredicateTable& predicates,
const FunctionTable& functions,
const TermTable& terms ) const;
virtual bool match( const StateFormula &formula, VarSubstMap &subst ) const;
virtual void free_vars( VariableList &context, VariableList &vars ) const;
virtual bool analyze( PredicateTable &predicates, TermTable &terms,
std::map<const StateFormula*,const Atom*> &hash ) const;
virtual const StateFormula& rewrite( std::map<const StateFormula*,const Atom*> &hash ) const;
virtual void generate_atoms( void ) const;
};
/*******************************************************************************
*
* comparison
*
******************************************************************************/
class Comparison : public StateFormula
{
public:
typedef enum { LT_CMP, LE_CMP, EQ_CMP, GE_CMP, GT_CMP } CmpPredicate;
private:
CmpPredicate predicate_;
const Expression* expr1_;
const Expression* expr2_;
public:
Comparison( CmpPredicate predicate, const Expression& expr1, const Expression& expr2 );
virtual ~Comparison();
CmpPredicate predicate( void ) const { return( predicate_ ); }
const Expression& expr1( void ) const { return( *expr1_ ); }
const Expression& expr2( void ) const { return( *expr2_ ); }
virtual bool holds( const AtomSet& atoms, const ValueMap& values ) const;
virtual bool holds( const state_t& state ) const;
virtual const StateFormula& flatten( bool negated = false ) const;
virtual void translate( atomList_t &alist ) const;
virtual void translate( atomListList_t &alist ) const;
virtual const StateFormula& instantiation( const SubstitutionMap& subst,
const problem_t& problem ) const;
virtual bool operator==( const StateFormula &formula ) const;
virtual void print( std::ostream& os, const PredicateTable& predicates,
const FunctionTable& functions,
const TermTable& terms ) const;
virtual bool match( const StateFormula &formula, VarSubstMap &subst ) const;
virtual void free_vars( VariableList &context, VariableList &vars ) const;
virtual bool analyze( PredicateTable &predicates, TermTable &terms,
std::map<const StateFormula*,const Atom*> &hash ) const;
virtual const StateFormula& rewrite( std::map<const StateFormula*,const Atom*> &hash ) const;
virtual void generate_atoms( void ) const;
};
/*******************************************************************************
*
* negation
*
******************************************************************************/
class Negation : public StateFormula
{
private:
const StateFormula* negand_;
Negation( const StateFormula& negand );
public:
static const StateFormula& make_negation( const StateFormula& formula );
virtual ~Negation();
const StateFormula& negand( void ) const { return( *negand_ ); }
virtual bool holds( const AtomSet& atoms, const ValueMap& values ) const;
virtual bool holds( const state_t& state ) const;
virtual const StateFormula& flatten( bool negated = false ) const;
virtual void translate( atomList_t &alist ) const;
virtual void translate( atomListList_t &alist ) const;
virtual const StateFormula& instantiation( const SubstitutionMap& subst,
const problem_t& problem ) const;
virtual bool operator==( const StateFormula &formula ) const;
virtual void print( std::ostream& os, const PredicateTable& predicates,
const FunctionTable& functions,
const TermTable& terms ) const;
virtual bool match( const StateFormula &formula, VarSubstMap &subst ) const;
virtual void free_vars( VariableList &context, VariableList &vars ) const;
virtual bool analyze( PredicateTable &predicates, TermTable &terms,
std::map<const StateFormula*,const Atom*> &hash ) const;
virtual const StateFormula& rewrite( std::map<const StateFormula*,const Atom*> &hash ) const;
virtual void generate_atoms( void ) const;
};
/*******************************************************************************
*
* conjunction
*
******************************************************************************/
class Conjunction : public StateFormula
{
private:
FormulaList conjuncts_;
public:
Conjunction();
virtual ~Conjunction();
static void cross_products( std::list<const Disjunction*>::const_iterator it,
std::list<const Disjunction*>::const_iterator end,
std::list<const StateFormula*> &conj,
std::list<const Conjunction*> &xproduct );
const Conjunction& merge( const Conjunction &conjunction ) const;
void add_conjunct( const StateFormula& conjunct );
size_t size( void ) const { return( conjuncts_.size() ); }
const StateFormula& conjunct( size_t i ) const { return( *conjuncts_[i] ); }
virtual bool holds( const AtomSet& atoms, const ValueMap& values ) const;
virtual bool holds( const state_t& state ) const;
virtual const StateFormula& flatten( bool negated = false ) const;
virtual void translate( atomList_t &alist ) const;
virtual void translate( atomListList_t &alist ) const;
virtual const StateFormula& instantiation( const SubstitutionMap& subst,
const problem_t& problem ) const;
virtual bool operator==( const StateFormula &formula ) const;
virtual void print( std::ostream& os, const PredicateTable& predicates,
const FunctionTable& functions,
const TermTable& terms ) const;
virtual bool match( const StateFormula &formula, VarSubstMap &subst ) const;
virtual void free_vars( VariableList &context, VariableList &vars ) const;
virtual bool analyze( PredicateTable &predicates, TermTable &terms,
std::map<const StateFormula*,const Atom*> &hash ) const;
virtual const StateFormula& rewrite( std::map<const StateFormula*,const Atom*> &hash ) const;
virtual void generate_atoms( void ) const;
};
/*******************************************************************************
*
* disjunction
*
******************************************************************************/
class Disjunction : public StateFormula
{
private:
FormulaList disjuncts_;
public:
Disjunction();
virtual ~Disjunction();
static void cross_products( std::list<const Conjunction*>::const_iterator it,
std::list<const Conjunction*>::const_iterator end,
std::list<const StateFormula*> &conj,
std::list<const Disjunction*> &xproduct );
const Disjunction& merge( const Disjunction &disjunction ) const;
void add_disjunct( const StateFormula& disjunct );
size_t size( void ) const { return( disjuncts_.size() ); }
const StateFormula& disjunct( size_t i ) const { return( *disjuncts_[i] ); }
virtual bool holds( const AtomSet& atoms, const ValueMap& values ) const;
virtual bool holds( const state_t& state ) const;
virtual const StateFormula& flatten( bool negated = false ) const;
virtual void translate( atomList_t &alist ) const;
virtual void translate( atomListList_t &alist ) const;
virtual const StateFormula& instantiation( const SubstitutionMap& subst,
const problem_t& problem ) const;
virtual bool operator==( const StateFormula &formula ) const;
virtual void print( std::ostream& os, const PredicateTable& predicates,
const FunctionTable& functions,
const TermTable& terms ) const;
virtual bool match( const StateFormula &formula, VarSubstMap &subst ) const;
virtual void free_vars( VariableList &context, VariableList &vars ) const;
virtual bool analyze( PredicateTable &predicates, TermTable &terms,
std::map<const StateFormula*,const Atom*> &hash ) const;
virtual const StateFormula& rewrite( std::map<const StateFormula*,const Atom*> &hash ) const;
virtual void generate_atoms( void ) const;
};
/*******************************************************************************
*
* exists
*
******************************************************************************/
class Exists : public StateFormula
{
private:
VariableList parameters_;
const StateFormula* body_;
public:
Exists();
virtual ~Exists();
void add_parameter( Variable parameter ) { parameters_.push_back( parameter ); }
void set_body( const StateFormula& body );
size_t arity( void ) const { return( parameters_.size() ); }
Variable parameter( size_t i ) const { return( parameters_[i] ); }
const StateFormula& body( void ) const { return( *body_ ); }
virtual bool holds( const AtomSet& atoms, const ValueMap& values ) const;
virtual bool holds( const state_t& state ) const;
virtual const StateFormula& flatten( bool negated = false ) const;
virtual void translate( atomList_t &alist ) const;
virtual void translate( atomListList_t &alist ) const;
virtual const StateFormula& instantiation( const SubstitutionMap& subst,
const problem_t& problem ) const;
virtual bool operator==( const StateFormula &formula ) const;
virtual void print( std::ostream& os, const PredicateTable& predicates,
const FunctionTable& functions,
const TermTable& terms ) const;
virtual bool match( const StateFormula &formula, VarSubstMap &subst ) const;
virtual void free_vars( VariableList &context, VariableList &vars ) const;
virtual bool analyze( PredicateTable &predicates, TermTable &terms,
std::map<const StateFormula*,const Atom*> &hash ) const;
virtual const StateFormula& rewrite( std::map<const StateFormula*,const Atom*> &hash ) const;
virtual void generate_atoms( void ) const;
};
/*******************************************************************************
*
* forall
*
******************************************************************************/
class Forall : public StateFormula
{
private:
VariableList parameters_;
const StateFormula* body_;
public:
Forall();
virtual ~Forall();
void add_parameter( Variable parameter ) { parameters_.push_back( parameter ); }
void set_body( const StateFormula& body );
size_t arity( void ) const { return( parameters_.size() ); }
Variable parameter( size_t i ) const { return( parameters_[i] ); }
const StateFormula& body( void ) const { return( *body_ ); }
virtual bool holds( const AtomSet& atoms, const ValueMap& values ) const;
virtual bool holds( const state_t& state ) const;
virtual const StateFormula& flatten( bool negated = false ) const;
virtual void translate( atomList_t &alist ) const;
virtual void translate( atomListList_t &alist ) const;
virtual const StateFormula& instantiation( const SubstitutionMap& subst,
const problem_t& problem ) const;
virtual bool operator==( const StateFormula &formula ) const;
virtual void print( std::ostream& os, const PredicateTable& predicates,
const FunctionTable& functions,
const TermTable& terms ) const;
virtual bool match( const StateFormula &formula, VarSubstMap &subst ) const;
virtual void free_vars( VariableList &context, VariableList &vars ) const;
virtual bool analyze( PredicateTable &predicates, TermTable &terms,
std::map<const StateFormula*,const Atom*> &hash ) const;
virtual const StateFormula& rewrite( std::map<const StateFormula*,const Atom*> &hash ) const;
virtual void generate_atoms( void ) const;
};
class AtomList : public std::vector<const Atom*> { };
#endif // FORMULAS_H