patrick
/
plasp
Archived
1
0
Fork 0
Commit Graph

26 Commits

Author SHA1 Message Date
Patrick Lühne 2288fa891e
Replacing user-defined variable names.
This replaces all user-defined variable names with continuously numbered
ones so that they don’t lead to syntax problems in ASP, while still
unique and distinguishable. For instance, this avoids problems when
variable names contain hyphens, which are allowed in PDDL identifiers
but not in ASP variables.
2017-11-25 00:37:09 +01:00
Patrick Lühne b21b4f47bf
Made form of variables within values consistent.
Previously, variables referenced within values were unpacked within
values. This was inconsistent, because all predicates are usually used
in their unpacked form in the rest of the output format. This commit
makes this consistent by using variables in their packed form within
values, making it more compact to handle them.
2017-11-03 01:49:24 +01:00
Patrick Lühne 3a7b61de68
Fixed syntax error at end of initial state facts.
Due to a mistake in commit 6d07fcb, the closing parenthesis and period
at the end of initial state facts was omitted. This adds these back in
order to solve this syntax error.
2017-11-01 16:00:48 +01:00
Patrick Lühne 1631a70a0b
Ensuring that goal is variable-free.
Even though the parser shouldn’t be able to put variables into the goal
description, the AST theoretically allows for this case. This commit
adds a defensive check that goal descriptions are variable-free.
2017-10-27 17:10:35 +02:00
Patrick Lühne 27f773e091
Added support for derived predicates in goals.
By accident, the support for derived predicates in goals was missing.
This commit adds this, in a very similar way to how normal predicates
are handled in the goal description.
2017-10-27 16:46:38 +02:00
Patrick Lühne 6d07fcbd6c
Moved initial state translation to new header. 2017-10-27 16:38:01 +02:00
Patrick Lühne 9199b68080
Renamed “pddlparse” library to simply “pddl”. 2017-08-09 17:52:50 +02:00
Patrick Lühne 95c03396d0
Fixed incorrect argument format in ASP output. 2017-06-28 00:51:42 +02:00
Patrick Lühne d82ae8544b
Implemented translation of conditional PDDL effects. 2017-06-28 00:33:00 +02:00
Patrick Lühne 0caef2e81c
Extended error message. 2017-06-27 23:35:44 +02:00
Patrick Lühne f61cfa532d
Added support for unconditional “forall” effect statements. 2017-06-27 23:17:32 +02:00
Patrick Lühne da85683f7c
Changed effects in normalized PDDL effects according to recent changes. 2017-06-27 18:17:02 +02:00
Patrick Lühne 6c9ca0ccb8
Implemented translation of derived predicates. 2017-06-24 23:54:57 +02:00
Patrick Lühne ca02b8ce62
Throwing exceptions for unsupported features instead of silently accepting them. 2017-06-24 20:27:01 +02:00
Patrick Lühne 9d1a8f4c0f
Started implementing PDDL normalization. 2017-06-23 04:18:07 +02:00
Patrick Lühne e93085d88a
Moved color logging to separate library for reusing it in PDDL parser. 2017-06-22 20:58:31 +02:00
Patrick Lühne e345fd60fd
Reimplemented plasp with PDDL parsing library. 2017-06-20 01:53:55 +02:00
Patrick Lühne f1d2c4e532
Removed invalid to-do. 2016-12-08 01:58:36 +01:00
Patrick Lühne a07d105906
Added missing include. 2016-12-08 01:44:36 +01:00
Patrick Lühne 31182b6de9
Implemented translation of derived predicates in action preconditions. 2016-12-08 01:28:00 +01:00
Patrick Lühne 586f53a788
Restructured functions related to translation of predicates. 2016-12-08 01:27:38 +01:00
Patrick Lühne 1561aa5eb9
Put functions related to translation of predicates in separate file. 2016-12-08 01:18:00 +01:00
Patrick Lühne f4672a5b50
Added -Wextra flag to notice warnings more easily. 2016-12-08 01:17:09 +01:00
Patrick Lühne a5f1ebdc09
Removed unnecessary include directives. 2016-12-08 01:07:17 +01:00
Patrick Lühne 8587aa23c4
Put functions related to translation of variables in separate file. 2016-12-08 01:05:39 +01:00
Patrick Lühne 6355921e59
Implemented preconditions for derived predicates. 2016-12-08 00:52:09 +01:00