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?
|