Issue281

Title Invalid plans found due to problem in instantiation
Priority bug Status resolved
Superseder Nosy List gabi, malte
Assigned To malte Keywords
Optional summary

Created on 2011-09-20.16:43:56 by gabi, last changed by malte.

Files
File name Uploaded Type Edit Remove
domain.pddl gabi, 2011-09-20.16:43:56 application/octet-stream
task.pddl gabi, 2011-09-20.16:44:06 application/octet-stream
Messages
msg1788 (view) Author: malte Date: 2011-09-21.23:54:21
Merged.
msg1787 (view) Author: gabi Date: 2011-09-21.14:18:43
This was actually not implemented in the normalization. Now it is. :-)
msg1785 (view) Author: malte Date: 2011-09-20.21:09:11
The translator paper indeed says that such existentially quantified variables in
effect conditions should be compiled to universally quantified variables of the
effect (last sentence of Section 4.2).

Can you confirm that you see this operator dump after normalization?
That would indicate that there's a bug in normalize.py.
msg1784 (view) Author: malte Date: 2011-09-20.20:35:34
I'm not sure I've seen existential conditions in universal effects before, so
maybe that is not properly implemented. (If so, that's a bug though, not an
intentionally missing feature.)

Existential conditions that happen in the precondition should be treated like
operator parameters; by analogy, I think it should be correct to treat
existential conditions within universal effects as additional quantified
variables for the universal effect? I'll check what the paper says about this
and what the normalization code does.
msg1783 (view) Author: gabi Date: 2011-09-20.16:43:56
I get invalid plans on one of my compiled tasks (simplified version attached).

The problem seems to be somewhere in the instantiation, because for action
have-party it throws conditional effects that make someone_angry_in_world true away.

More precisely, in the effect

  forall ?w: object
    if
      ExistentialCondition ?p: object
        Conjunction
          Atom inworld(?p, ?w)
          NegatedAtom invited_in_world(?p, ?w)
    then
      Atom someone_angry_in_world(?w)

the translator thinks that the condition is for ?w=world1 impossible: When it
instantiates Atom inworld(?p, ?w), it checks whether "inworld(?p, world1)" is
either in fluent_facts or in the initial state. So it seems to be a problem with
the variable mapping for ?p which should somehow be handled in the instantiation
of the existential condition...? 

Shouldn't existential conditions not already have been compiled away at this stage?
History
Date User Action Args
2011-09-21 23:54:21maltesetstatus: reviewing -> resolved
messages: + msg1788
2011-09-21 14:18:43gabisetstatus: chatting -> reviewing
assignedto: malte
messages: + msg1787
2011-09-20 21:09:11maltesetmessages: + msg1785
2011-09-20 20:35:35maltesetstatus: unread -> chatting
messages: + msg1784
2011-09-20 16:44:06gabisetfiles: + task.pddl
2011-09-20 16:43:56gabicreate