patrick
/
plasp
Archived
1
0
Fork 0
Commit Graph

462 Commits

Author SHA1 Message Date
Patrick Lühne f24491cd5a Updated help message with PDDL support. 2016-06-13 15:01:23 +02:00
Patrick Lühne 268bee3c5f Updated change log with new command-line option --warning-level. 2016-06-13 14:46:30 +02:00
Patrick Lühne 5c3ea28e48 Added command-line option for treating warnings as errors or completely ignoring them. 2016-06-13 14:45:31 +02:00
Patrick Lühne fdbcb261df Avoiding empty arguments in n-ary expressions. 2016-06-13 14:04:12 +02:00
Patrick Lühne 2c3481d027 Initializing PDDL problem description only if available. 2016-06-13 13:37:18 +02:00
Patrick Lühne 1c2ad0ceec Updated change log with addition of basic PDDL translation. 2016-06-13 03:59:48 +02:00
Patrick Lühne 7899d3e262 Added simple encoding for translated PDDL instances. 2016-06-13 03:48:04 +02:00
Patrick Lühne 6b88cb7926 Renamed SAS → ASP encoding for clarity. 2016-06-13 03:32:58 +02:00
Patrick Lühne 421125fee6 Escaping PDDL identifiers for use with ASP. 2016-06-13 03:31:41 +02:00
Patrick Lühne 8563011939 Minor formatting. 2016-06-13 03:22:48 +02:00
Patrick Lühne e07672ffe6 Added transitive deduction of object types to PDDL translation. 2016-06-13 03:22:19 +02:00
Patrick Lühne 23f6f9b26b Added translation of a PDDL problem’s goal. 2016-06-13 03:19:24 +02:00
Patrick Lühne e9c464b319 Added translation of a PDDL problem’s initial state. 2016-06-13 02:59:43 +02:00
Patrick Lühne d3dc9101dd Added translation of objects in PDDL problems. 2016-06-13 02:48:16 +02:00
Patrick Lühne e018cdbc91 Added translation of effects of PDDL actions. 2016-06-13 02:41:23 +02:00
Patrick Lühne e2b8fd2880 Added translation for preconditions of PDDL actions. 2016-06-13 02:38:56 +02:00
Patrick Lühne 680206b40b Removed Reference expressions. 2016-06-13 01:38:56 +02:00
Patrick Lühne 1c8af793c2 Made PDDL action preconditions and effects optional. 2016-06-12 23:51:45 +02:00
Patrick Lühne 46351b2fe7 Ensuring that input contains only predicates, negations, and conjunctions for the time being. 2016-06-12 23:38:44 +02:00
Patrick Lühne 30cfa1b45e Fixes lambda issue with gcc. 2016-06-12 22:58:17 +02:00
Patrick Lühne 0756d63769 Put translation of PDDL variable lists into separate method. 2016-06-12 22:55:35 +02:00
Patrick Lühne 87ca54a253 Translating names of PDDL actions. 2016-06-12 22:47:39 +02:00
Patrick Lühne 9c2f49e4a0 Put PDDL translation sections into separate methods. 2016-06-12 22:39:04 +02:00
Patrick Lühne 49002ac52d Made output stream a member of the SAS translator for convenience. 2016-06-12 22:35:31 +02:00
Patrick Lühne b70e62ff3b Made output stream a member of the PDDL translator for convenience. 2016-06-12 22:31:31 +02:00
Patrick Lühne 046f803538 Implemented translation of PDDL predicates (with primitive types only). 2016-06-12 22:25:12 +02:00
Patrick Lühne 639b7646c9 Making sure that PDDL predicates contain only primitive types for the time being. 2016-06-12 22:19:55 +02:00
Patrick Lühne 89bb54a3ec Hiding translated PDDL sections if empty. 2016-06-12 22:19:24 +02:00
Patrick Lühne 979d9509c1 Added function for escaping ASP variables. 2016-06-12 22:12:43 +02:00
Patrick Lühne e9d48bcb7d Removing visitor pattern and replacing it with CRTP. 2016-06-12 22:12:09 +02:00
Patrick Lühne 318bd8297c Disambiguation of parser and translation errors in plasp binary. 2016-06-12 22:09:47 +02:00
Patrick Lühne 0513b3aa0c Implemented translation of PDDL domain constants. 2016-06-10 17:52:19 +02:00
Patrick Lühne 458dbd723c Restructured translated PDDL type output. 2016-06-10 17:48:17 +02:00
Patrick Lühne 8f0f4bfa65 Implemented translation of PDDL domain types. 2016-06-10 17:40:32 +02:00
Patrick Lühne da71d4947b Added method for checking whether PDDL description contains problem. 2016-06-10 17:26:36 +02:00
Patrick Lühne 6a83147ac0 Moved TranslatorException class to utils directory. 2016-06-10 17:21:56 +02:00
Patrick Lühne f6cfc55e21 Put exception handling back into plasp binary for convenient use. 2016-06-10 17:12:23 +02:00
Patrick Lühne 34a413cf05 Clarified error message. 2016-06-10 17:12:08 +02:00
Patrick Lühne 854ade5fa9 Ensuring input to contain only one SAS description. 2016-06-10 17:09:06 +02:00
Patrick Lühne be09230410 Added test for PDDL comment parsing. 2016-06-10 16:50:08 +02:00
Patrick Lühne 20b40d3e1c Allowing primitive type »objects« for compatibility. 2016-06-10 16:46:02 +02:00
Patrick Lühne 9f0e784a4a Implemented recognition of comments in PDDL. 2016-06-10 16:40:43 +02:00
Patrick Lühne 168fcc874e Added PDDL-related changes to change log. 2016-06-10 01:30:30 +02:00
Patrick Lühne d446c192cf Made plasp’s help message more precise. 2016-06-10 01:28:13 +02:00
Patrick Lühne eb5a120286 Fixed wrong comparison for language detection. 2016-06-10 01:25:51 +02:00
Patrick Lühne 2e1a011dcf Implemented automatic language detection for plasp application. 2016-06-10 01:23:41 +02:00
Patrick Lühne 8ef874eb22 Simplified plasp application by initializing parser externally. 2016-06-10 00:59:44 +02:00
Patrick Lühne c6dc84f27f Removed now unnecessary check for number of files with SAS parser. 2016-06-10 00:51:31 +02:00
Patrick Lühne 8bb25e9b90 Implemented construction of SAS and PDDL Descriptions from Parser object. 2016-06-10 00:46:40 +02:00
Patrick Lühne c6bdfe3f38 Renamed issue checking test. 2016-06-09 23:35:57 +02:00