forked from anubhav-gres/VAL-4.2.08
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrettyPrinter.cpp
More file actions
695 lines (615 loc) · 15.5 KB
/
PrettyPrinter.cpp
File metadata and controls
695 lines (615 loc) · 15.5 KB
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
/************************************************************************
* Copyright 2008, Strathclyde Planning Group,
* Department of Computer and Information Sciences,
* University of Strathclyde, Glasgow, UK
* http://planning.cis.strath.ac.uk/
*
* Maria Fox, Richard Howey and Derek Long - VAL
* Stephen Cresswell - PDDL Parser
*
* This file is part of VAL, the PDDL validator.
*
* VAL 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.
*
* VAL 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 VAL. If not, see <http://www.gnu.org/licenses/>.
*
************************************************************************/
#include "PrettyPrinter.h"
#include "Utils.h"
#include "ptree.h"
#include <set>
#include <algorithm>
#include "FuncExp.h"
using std::set;
using std::cerr;
using std::for_each;
using std::find;
//#define set std::set
namespace VAL {
void PrettyPrinter::write_symbol(ostream & o,const symbol * p)
{
o << p->getName();
};
void PrettyPrinter::write_const_symbol(ostream & o,const const_symbol * p)
{
o << p->getName();
if(showType && p->type)
{
showType = false;
o << " - " << *(p->type);
showType = true;
};
};
void PrettyPrinter::write_var_symbol(ostream & o,const var_symbol * p)
{
o << "?" << p->getName();
if(showType && p->type)
{
showType = false;
o << " - " << *(p->type);
showType = true;
};
};
void PrettyPrinter::write_pddl_typed_symbol(ostream & o,const pddl_typed_symbol * p)
{
o << p->getName();
if(showType && p->type)
{
showType = false;
o << " - " << *(p->type);
showType = true;
};
};
void PrettyPrinter::write_plus_expression(ostream & o,const plus_expression * p)
{
o << "(+ " << *(p->getLHS()) << " " << *(p->getRHS()) << ")";
};
void PrettyPrinter::write_minus_expression(ostream & o,const minus_expression * p)
{
o << "(- " << *(p->getLHS()) << " " << *(p->getRHS()) << ")";
};
void PrettyPrinter::write_mul_expression(ostream & o,const mul_expression * p)
{
o << "(* " << *(p->getLHS()) << " " << *(p->getRHS()) << ")";
};
void PrettyPrinter::write_div_expression(ostream & o,const div_expression * p)
{
o << "(/ " << *(p->getLHS()) << " " << *(p->getRHS()) << ")";
};
void PrettyPrinter::write_uminus_expression(ostream & o,const uminus_expression * p)
{
o << "(- " << *(p->getExpr()) << ")";
};
void PrettyPrinter::write_int_expression(ostream & o,const int_expression * p)
{
o << (int) p->double_value();
};
void PrettyPrinter::write_float_expression(ostream & o,const float_expression * p)
{
o << p->double_value();
};
void PrettyPrinter::write_special_val_expr(ostream & o,const special_val_expr * p)
{
switch(p->getKind())
{
case E_HASHT:
o << "#t";
break;
case E_DURATION_VAR:
case E_TOTAL_TIME:
default:
cerr << "Not handling duration variables or total time value\n";
break;
};
};
void PrettyPrinter::write_func_term(ostream & o,const func_term * p)
{
o << "(";
p->getFunction()->func_symbol::write(o);
for(parameter_symbol_list::const_iterator i = p->getArgs()->begin();i != p->getArgs()->end();++i)
{
o << " ";
if(dynamic_cast<var_symbol*>(*i))
{
dynamic_cast<var_symbol*>(*i)->var_symbol::write(o);
}
else
{
dynamic_cast<const_symbol*>(*i)->const_symbol::write(o);
};
};
o << ")";
};
void PrettyPrinter::write_assignment(ostream & o,const assignment * p)
{
o << "(";
switch(p->getOp())
{
case E_ASSIGN:
if(inInitial)
{
o << "= ";
}
else
{
o << "assign ";
};
break;
case E_INCREASE:
o << "increase ";
break;
case E_DECREASE:
o << "decrease ";
break;
case E_SCALE_UP:
o << "scale-up ";
break;
case E_SCALE_DOWN:
o << "scale-down ";
break;
default:
break;
};
p->getFTerm()->write(o);
o << " ";
p->getExpr()->write(o);
o << ")";
};
struct Writer {
ostream & o;
Writer(ostream & oo) : o(oo) {};
template<class typ>
void operator()(const typ * p) {o << " "; p->typ::write(o);};
};
struct NotWriter {
ostream & o;
NotWriter(ostream & oo) : o(oo) {};
template<class typ>
void operator()(const typ * p) {o << " (not "; p->typ::write(o);o << ")";};
};
void PrettyPrinter::write_goal_list(ostream & o,const goal_list * p)
{
for(goal_list::const_iterator i = p->begin();i != p->end();++i)
{
o << " " << **i;
};
};
void PrettyPrinter::write_simple_goal(ostream & o,const simple_goal * p)
{
if(p->getPolarity()==E_NEG)
{
o << "(not " << *(p->getProp()) << ")";
}
else
{
o << *(p->getProp());
};
};
void PrettyPrinter::write_qfied_goal(ostream & o,const qfied_goal * p)
{
switch(p->getQuantifier())
{
case E_FORALL:
o << "(forall (";
break;
default:
o << "(exists (";
break;
};
showType = true;
for(var_symbol_list::const_iterator i = p->getVars()->begin();i != p->getVars()->end();++i)
{
o << **i << " ";
};
showType = false;
o << ") " << *(p->getGoal()) << ")";
};
void PrettyPrinter::write_conj_goal(ostream & o,const conj_goal * p)
{
o << "(and " << *(p->getGoals()) << ")";
};
void PrettyPrinter::write_disj_goal(ostream & o,const disj_goal * p)
{
o << "(or " << *(p->getGoals()) << ")";
};
void PrettyPrinter::write_timed_goal(ostream & o,const timed_goal * p)
{
switch(p->getTime())
{
case E_AT_END:
o << "(at end ";
break;
case E_AT_START:
o << "(at start ";
break;
default:
o << "(over all ";
break;
};
o << *(p->getGoal()) << ")";
};
void PrettyPrinter::write_imply_goal(ostream & o,const imply_goal * p)
{
o << "(implies " << *(p->getAntecedent()) << " " << *(p->getConsequent()) << ")";
};
void PrettyPrinter::write_neg_goal(ostream & o,const neg_goal * p)
{
o << "(not " << *(p->getGoal()) << ")";
};
void PrettyPrinter::write_comparison(ostream & o,const comparison * p)
{
o << "(";
switch(p->getOp())
{
case E_GREATER:
o << "> ";
break;
case E_GREATEQ:
o << ">= ";
break;
case E_LESS:
o << "< ";
break;
case E_LESSEQ:
o << "<= ";
break;
case E_EQUALS:
o << "= ";
break;
default:
break;
};
o << *(p->getLHS()) << " " << *(p->getRHS()) << ")";
};
void PrettyPrinter::write_proposition(ostream & o,const proposition * p)
{
o << "(" << p->head->getName();
for(parameter_symbol_list::const_iterator i = p->args->begin();i != p->args->end();++i)
{
o << " ";
if(dynamic_cast<var_symbol*>(*i))
{
dynamic_cast<var_symbol*>(*i)->var_symbol::write(o);
}
else
{
dynamic_cast<const_symbol*>(*i)->const_symbol::write(o);
};
};
o << ")";
};
void PrettyPrinter::write_pred_decl(ostream & o,const pred_decl * p)
{
o << "(";
p->getPred()->symbol::write(o);
p->getArgs()->var_symbol_list::write(o);
o << ")";
};
void PrettyPrinter::write_func_decl(ostream & o,const func_decl * p)
{
o << "(";
p->getFunction()->symbol::write(o);
p->getArgs()->var_symbol_list::write(o);
o << ")";
};
void PrettyPrinter::write_simple_effect(ostream & o,const simple_effect * p)
{
o << *(p->prop);
};
void PrettyPrinter::write_forall_effect(ostream & o,const forall_effect * p)
{
o << "(forall (";
for(var_symbol_table::const_iterator i = p->getVars()->begin();i != p->getVars()->end();++i)
{
o << "?" << (i->first) << " ";
};
o << ") ";
// We need to add the type conditions to the effect. These are preconditions of a
// conditional effect. If the effect is already conditional then we simply add the
// preconditions, but otherwise we need to create a new conditional effect.
if(p->getEffects()->cond_effects.empty())
{
o << "(when ";
bool tt = (p->getVars()->size() > 1);
if(tt) o << "(and ";
for(var_symbol_table::const_iterator i = p->getVars()->begin();i != p->getVars()->end();++i)
{
if(i->second->type)
{
o << "(" << i->second->type->getName() << " ?" << (i->first) << ") ";
}
else
{
o << "(or ";
for(pddl_type_list::const_iterator j = i->second->either_types->begin();j != i->second->either_types->end();++j)
{
o << " (";
(*j)->type->symbol::write(o);
o << " " << i->first << ")";
};
o << ") ";
};
};
if(tt) o << ") ";
o << *(p->getEffects()) << ")";
}
else
{
if(p->getEffects()->cond_effects.size()==1 &&
p->getEffects()->add_effects.empty() &&
p->getEffects()->del_effects.empty() &&
p->getEffects()->forall_effects.empty() &&
p->getEffects()->timed_effects.empty())
{
o << "(when (and ";
for(var_symbol_table::const_iterator i = p->getVars()->begin();i != p->getVars()->end();++i)
{
if(i->second->type)
{
o << "(" << i->second->type->getName() << " ?" << (i->first) << ") ";
}
else
{
o << "(or ";
for(pddl_type_list::const_iterator j = i->second->either_types->begin();j != i->second->either_types->end();++j)
{
o << " (";
(*j)->type->symbol::write(o);
o << " " << i->first << ")";
};
o << ")";
};
};
if(const conj_goal * cg = dynamic_cast<const conj_goal*>(p->getEffects()->cond_effects.front()->getCondition()))
{
o << *(cg->getGoals());
}
else
{
o << *(p->getEffects()->cond_effects.front()->getCondition());
};
o << ") " << *(p->getEffects()->cond_effects.front()->getEffects()) << ")";
}
else
{
cerr << "Complex quantified/conditional effect not yet handled!\n";
};
};
};
void PrettyPrinter::write_cond_effect(ostream & o,const cond_effect * p)
{
o << "(when " << *(p->getCondition()) << " " << *(p->getEffects()) << ")";
};
void PrettyPrinter::write_timed_effect(ostream & o,const timed_effect * p)
{
o << *(p->effs);
};
void PrettyPrinter::write_effect_lists(ostream & o,const effect_lists * p)
{
bool tt = (p->add_effects.size() + p->del_effects.size() + p->forall_effects.size() +
p->cond_effects.size() + p->assign_effects.size() + p->timed_effects.size() > 1);
if(tt || firstCall) o << "(and";
bool f = firstCall;
firstCall = false;
for_each(p->add_effects.begin(),p->add_effects.end(),Writer(o));
for_each(p->del_effects.begin(),p->del_effects.end(),NotWriter(o));
for_each(p->forall_effects.begin(),p->forall_effects.end(),Writer(o));
for_each(p->cond_effects.begin(),p->cond_effects.end(),Writer(o));
for_each(p->assign_effects.begin(),p->assign_effects.end(),Writer(o));
for_each(p->timed_effects.begin(),p->timed_effects.end(),Writer(o));
firstCall = f;
if(tt || firstCall) o << ")";
};
void PrettyPrinter::write_operator_(ostream & o,const operator_ * p)
{
};
void PrettyPrinter::write_action(ostream & o,const action * p)
{
o << "(:action " << p->name->getName() << "\n :parameters (";
p->parameters->var_symbol_list::write(o);
showType = false;
o << ")\n :precondition\n\t(and ";
if(conj_goal * cg = dynamic_cast<conj_goal*>(p->precondition))
{
o << *(cg->getGoals());
}
else
{
o << *(p->precondition);
};
o << ")\n :effect\n\t";
p->effects->effect_lists::write(o);
o << ")\n\n";
showType = true;
};
void PrettyPrinter::write_event(ostream & o,const event * p)
{
o << "(:event " << p->name->getName() << "\n :parameters (";
p->parameters->var_symbol_list::write(o);
showType = false;
o << ")\n :precondition\n\t(and ";
if(conj_goal * cg = dynamic_cast<conj_goal*>(p->precondition))
{
o << *(cg->getGoals());
}
else
{
o << *(p->precondition);
};
o << ")\n :effect\n\t";
p->effects->effect_lists::write(o);
o << ")\n\n";
showType = true;
};
void PrettyPrinter::write_process(ostream & o,const process * p)
{
o << "(:process " << p->name->getName() << "\n :parameters (";
p->parameters->var_symbol_list::write(o);
showType = false;
o << ")\n :precondition\n\t(and ";
if(conj_goal * cg = dynamic_cast<conj_goal*>(p->precondition))
{
o << *(cg->getGoals());
}
else
{
o << *(p->precondition);
};
o << ")\n :effect\n\t";
p->effects->effect_lists::write(o);
o << ")\n\n";
showType = true;
};
void collect_symbols(var_symbol_list & vs,const expression * e)
{
if(const func_term * f = dynamic_cast<const func_term*>(e))
{
for(parameter_symbol_list::const_iterator i = f->getArgs()->begin();
i != f->getArgs()->end();++i)
{
if(var_symbol* v = const_cast<var_symbol*>(dynamic_cast<const var_symbol*>(*i)))
{
if(find(vs.begin(),vs.end(),v)==vs.end()) vs.push_back(v);
}
else
{
cerr << "Handle constants in duration constraints manually, please\n";
exit(1);
};
};
}
else
{
if(const binary_expression * b = dynamic_cast<const binary_expression*>(e))
{
collect_symbols(vs,b->getLHS());
collect_symbols(vs,b->getRHS());
}
else if(const uminus_expression * u = dynamic_cast<const uminus_expression*>(e))
{
collect_symbols(vs,u->getExpr());
};
};
};
void PrettyPrinter::write_durative_action(ostream & o,const durative_action * p)
{
o << "(:durative-action " << p->name->getName() << "\n :parameters (";
p->parameters->var_symbol_list::write(o);
showType = false;
o << " :duration ...\n";
o << ")\n :condition\n\t(and ";
if(conj_goal * cg = dynamic_cast<conj_goal*>(p->precondition))
{
o << *(cg->getGoals());
}
else
{
o << *(p->precondition);
};
o << ")\n :effect\n\t";
p->effects->effect_lists::write(o);
o << ")\n\n";
showType = true;
};
void PrettyPrinter::write_domain(ostream & o,const domain * p)
{
string s = pddl_req_flags_string(p->req ^ E_DURATIVE_ACTIONS);
o << "(define (domain " << p->name << ")\n(:requirements " << s << ":continuous-effects)\n";
if(p->types)
{
o << "(:types " << *(p->types) << ")\n";
};
o << "(:predicates\n\t";
if(p->predicates)
{
for_each(p->predicates->begin(),p->predicates->end(),Writer(o));
};
// PredWriter pw(o);
// p->ops->visit(&pw);
o << ")\n";
if(p->functions)
{
o << "(:functions\n\t";
for_each(p->functions->begin(),p->functions->end(),Writer(o));
o << ")\n";
};
if(p->constants)
{
o << "(:constants\n\t";
for_each(p->constants->begin(),p->constants->end(),Writer(o));
o << ")\n";
};
o << "\n";
p->ops->write(o);
o << ")\n";
};
void PrettyPrinter::write_metric_spec(ostream & o,const metric_spec * p)
{
/*
switch(p->opt)
{
case E_MAXIMIZE:
o << "(:metric maximize ";
break;
case E_MINIMIZE:
o << "(:metric minimize ";
break;
default:
break;
};
o << *(p->expr) << ")\n";
*/
};
void PrettyPrinter::write_length_spec(ostream & o,const length_spec * p)
{
// Ignore this anyway.
};
void PrettyPrinter::write_problem(ostream & o,const problem * p)
{
o << "(define (problem " << p->name << ")\n\t(:domain " << p->domain_name << ")\n\t(:objects";
for_each(p->objects->begin(),p->objects->end(),Writer(o));
o << ")\n\t(:init ";
inInitial = true;
showType = false;
for_each(p->initial_state->add_effects.begin(),p->initial_state->add_effects.end(),Writer(o));
for_each(p->initial_state->assign_effects.begin(),p->initial_state->assign_effects.end(),Writer(o));
inInitial = false;
o << ")\n\t(:goal " << *(p->the_goal) << ")\n";
if(p->metric) o << *(p->metric);
o << ")\n";
};
void PrettyPrinter::write_plan_step(ostream & o,const plan_step * p)
{
cerr << "Type stripping is not an appropriate operation for plans!\n";
};
/*
string duration_expression::createAll(State & s)
{
stringstream dur;
if(const num_expression * val = dynamic_cast<const num_expression*>(exp))
{
dur << nm << " = " << val->double_value() << "\n";
return dur.str();
};
Environment bs;
if(!bindAll(bs,s,exp)) return "";
recordOne(dur,s,bs);
done = false;
while(nextBinding(bs,s,exp))
{
done = false;
if(s.safeBinding(bs,exp)) recordOne(dur,s,bs);
};
return dur.str();
};
*/
};