Issue412

Title Translator fails with empty preconditions list
Priority bug Status resolved
Superseder Nosy List gabi, malte, yan
Assigned To malte Keywords
Optional summary

Created on 2014-01-28.12:22:29 by yan, last changed by gabi.

Files
File name Uploaded Type Edit Remove
empty-precondition.patch yan, 2014-01-28.12:22:28 text/x-patch
Messages
msg2980 (view) Author: gabi Date: 2014-02-19.11:01:09
Sorry for the delay, the branch is now merged.
msg2948 (view) Author: malte Date: 2014-02-10.18:49:13
Looks good. I made another change so that we also discard other actions with
empty effect (i.e., ":effect (and)") and so that the final syntax test is not
skipped if we have ":effect ()". If you're happy with the latest changeset,
please merge.
msg2945 (view) Author: gabi Date: 2014-02-10.14:10:59
Discarding actions with an empty effect during parsing requires only a minor
change in the code. Malte, I pushed a patch to the issue412 branch. Should we
merge this?
msg2944 (view) Author: gabi Date: 2014-02-10.10:55:32
The patch looks good. Thanks Malte! Before I merge it, I just would like to ask
whether it wouldn't make sense to directly discard actions without an effect
when parsing them. Is there any use case of a translator-variant where we would
need them?
msg2942 (view) Author: malte Date: 2014-02-09.19:26:32
I pushed a patch to the issue412 branch of the master repository.
Gabi, does it look OK to you?
msg2918 (view) Author: malte Date: 2014-01-31.19:33:32
Dear Yan,

thanks for letting us know!

Checking the PDDL 3.0 BNF, I have found two places where empty lists are allowed
and we don't currently support them: :precondition and :effect. They don't seem
to be allowed in :goal or in the condition part of conditional effects.

It's probably a good idea to fix both of these at the same time. We'll look into it.
msg2913 (view) Author: yan Date: 2014-01-28.12:22:28
Hi all,

we have found out that the translator script fails to parse actions with empty 
preconditions like this:

(:action action-name                                                              
    :parameters ()
    :precondition ()
    :effect     (something)                                                                  
)

It produces the following error message:

  File "src/translate/pddl/conditions.py", line 17, in parse_condition_aux
    tag = alist[0]
IndexError: list index out of range

It seems to us that an empty precondition list is a valid PDDL syntax.  We have 
created a patch that you can find attached.  Use it at your will.

Sincerely,

yan
History
Date User Action Args
2014-02-19 11:01:09gabisetstatus: reviewing -> resolved
messages: + msg2980
2014-02-10 18:49:13maltesetmessages: + msg2948
2014-02-10 14:10:59gabisetmessages: + msg2945
2014-02-10 10:55:32gabisetmessages: + msg2944
2014-02-09 19:26:32maltesetstatus: chatting -> reviewing
nosy: + gabi
messages: + msg2942
2014-02-07 19:47:30maltesetassignedto: malte
2014-01-31 19:33:32maltesetstatus: unread -> chatting
nosy: + malte
messages: + msg2918
2014-01-28 12:22:29yancreate