Issue405

Title Translator asserts "Negative goal not supported" when goal violates a mutex
Priority bug Status resolved
Superseder Nosy List gabi, kori, malte
Assigned To malte Keywords
Optional summary

Created on 2013-12-17.16:14:41 by kori, last changed by gabi.

Files
File name Uploaded Type Edit Remove
domain.pddl kori, 2013-12-17.16:14:41 application/octet-stream
issue405.patch malte, 2013-12-17.18:24:17 text/x-patch
p01easy.pddl kori, 2013-12-17.16:29:17 application/octet-stream
Messages
msg2822 (view) Author: gabi Date: 2013-12-18.11:03:54
The patch looks fine. Thanks!
msg2819 (view) Author: kori Date: 2013-12-18.08:56:18
Thank you Malte, patch works perfectly.
msg2815 (view) Author: malte Date: 2013-12-17.18:24:17
Hi kori,

the problem is that the translator detects that the goal violates a mutex and is
hence unreachable, but there is no code to handle this case. I've made a small
change to fix this.

Our public repository is currently frozen because of the IPC, but I have
attached a patch. Can you apply it, or do you need help with that?

Gabi, can you review the patch? Because I think it is likely to be fine, it is
already merged into default in your bitbucket repository; you can see it with:

    hg diff -c df1f36aa9cf3

If you like the change, you can mark this as resolved. I'll also save the
problem as a test case for the future.
msg2812 (view) Author: kori Date: 2013-12-17.16:29:17
Hi to all,
 when I attempt to run following very simple blocksworld problem (in attachment, domain is in previous ), which in fact has no solution 
(goal is to have one box put on two different boxes) it fails with following output:

Traceback (most recent call last):
  File "./src/translate/translate.py", line 665, in <module>
    main()
  File "./src/translate/translate.py", line 655, in main
    sas_task = pddl_to_sas(task)
  File "./src/translate/translate.py", line 518, in pddl_to_sas
    implied_facts)
  File "./src/translate/translate.py", line 435, in translate_task
    assert len(goal_dict_list) == 1, "Negative goal not supported"
TypeError: object of type 'NoneType' has no len()

It is intentionally unsolvable, but I hoped to receive "Completely explored state space -- no solution!" in the output.
How should I interpret this failure? Would it be possible to fix it?
Thanks
History
Date User Action Args
2013-12-18 11:03:54gabisetstatus: reviewing -> resolved
messages: + msg2822
2013-12-18 08:56:18korisetmessages: + msg2819
2013-12-17 18:24:17maltesetstatus: chatting -> reviewing
files: + issue405.patch
title: Translator asserts "Negative goal not supported" -> Translator asserts "Negative goal not supported" when goal violates a mutex
nosy: + gabi
messages: + msg2815
assignedto: malte
2013-12-17 16:46:59maltesetnosy: + malte
2013-12-17 16:29:17korisetfiles: + p01easy.pddl
status: unread -> chatting
messages: + msg2812
nosy: + kori
2013-12-17 16:14:41koricreate