On attached problem, I sometimes get the following translator crash:
[...]
Completing instantiation... Traceback (most recent call last):
File "/home/path/pkg/fd-clean/src/translate/translate.py", line 665, in <module>
main()
File "/home/path/pkg/fd-clean/src/translate/translate.py", line 655, in main
sas_task = pddl_to_sas(task)
File "/home/path/pkg/fd-clean/src/translate/translate.py", line 478, in
pddl_to_sas
reachable_action_params) = instantiate.explore(task)
File "/home/path/pkg/fd-clean/src/translate/instantiate.py", line 77, in explore
return instantiate(task, model)
File "/home/path/pkg/fd-clean/src/translate/instantiate.py", line 57, in
instantiate
fluent_facts, type_to_objects)
File "/home/path/pkg/fd-clean/src/translate/pddl/actions.py", line 117, in
instantiate
objects_by_type, effects)
File "/home/path/pkg/fd-clean/src/translate/pddl/effects.py", line 129, in
instantiate
self._instantiate(var_mapping, init_facts, fluent_facts, result)
File "/home/path/pkg/fd-clean/src/translate/pddl/effects.py", line 135, in
_instantiate
self.condition.instantiate(var_mapping, init_facts, fluent_facts, condition)
File "/home/path/pkg/fd-clean/src/translate/pddl/conditions.py", line 327, in
instantiate
elif atom not in init_facts:
File "/home/path/pkg/fd-clean/src/translate/pddl/conditions.py", line 284, in
__eq__
return (self.hash == other.hash and
AttributeError: 'Assign' object has no attribute 'hash'
But only sometimes: Running the translator again, with the same input, works
fine and produces a normal output. Repeating a few times, it seems I get the
crash about once in four tries.
Unfortunately, the files are a bit big, but this is the smallest instance on
which I have observed this behaviour.
This occurs on two different machines, one that has python "2.7.1+" and one that
has "2.7.3rc2".
One thing to note: The initial state spec contains "(= p1 p1) (= p2 p2) ..."
etc, i.e., explicit declarations of all(?) objects that are equal. Not sure if
that's an error or not. (Well, according to PDDL it's most likely an error; but
question is whether the translator accepts this as normal.)
|