Issue736

Title Simplification of conditional effects is too agressive
Priority bug Status resolved
Superseder Nosy List florian, jendrik, malte
Assigned To florian Keywords
Optional summary

Created on 2017-09-15.17:52:48 by florian, last changed by florian.

Files
File name Uploaded Type Edit Remove
domain-simple.pddl florian, 2017-09-15.17:56:49 application/octet-stream
domain.pddl florian, 2017-09-15.17:58:13 application/octet-stream
problem-simple.pddl florian, 2017-09-15.17:56:56 application/octet-stream
problem.pddl florian, 2017-09-15.17:58:20 application/octet-stream
Messages
msg6537 (view) Author: florian Date: 2017-09-16.19:32:00
Thank you for the reviews. I merged the code and pushed.
msg6536 (view) Author: malte Date: 2017-09-16.11:27:33
Yes, looks good to me, too.
msg6535 (view) Author: jendrik Date: 2017-09-16.09:47:56
The code looks good to me.
msg6534 (view) Author: florian Date: 2017-09-15.23:02:15
The experiment is done. It compared the generated output files (for technical
reasons I used the sha512 hashes of output.sas.xz as a proxy). There were only
four cases with a difference and they were all from the trucks domain where the
discovered invariants depend on the time limit.

I think this is ready for review.
msg6533 (view) Author: florian Date: 2017-09-15.20:46:58
I created a pull request on bitbucket:
https://bitbucket.org/FlorianPommerening/downward-issues/pull-requests/37

Experiments to check if this influences any existing benchmark are running.
msg6532 (view) Author: florian Date: 2017-09-15.18:01:24
I attached the pddl files where the error occurred and a simplified version of
them with only the toggle-light action.

In the simplified domain there is only one predicate (lights on/off, initially
off) and one action (toggle the light). The goal is to switch the lights on and
blind search finds no solution.
msg6531 (view) Author: florian Date: 2017-09-15.17:53:02
The translator simplifies conditional effects for binary variables in the method
prune_stupid_effect_conditions in the following way:

IF v=0 THEN v:=1 is simplified to v:=1
and
IF v=1 THEN v:=0 is simplified to v:=0

This is problematic if both effects occur (for example in a
"toggle-light-switch" action) because in this case
  (IF v=0 THEN v:=1) and (IF v=1 THEN v:=0)
is simplified to
  (v:=0 and v:=1).
History
Date User Action Args
2017-09-16 19:32:00floriansetstatus: chatting -> resolved
assignedto: florian
messages: + msg6537
2017-09-16 11:27:33maltesetmessages: + msg6536
2017-09-16 09:47:56jendriksetmessages: + msg6535
2017-09-15 23:02:16floriansetmessages: + msg6534
2017-09-15 20:46:58floriansetmessages: + msg6533
2017-09-15 18:01:25floriansetmessages: + msg6532
2017-09-15 17:58:20floriansetfiles: + problem.pddl
2017-09-15 17:58:13floriansetfiles: + domain.pddl
2017-09-15 17:56:56floriansetfiles: + problem-simple.pddl
2017-09-15 17:56:49floriansetfiles: + domain-simple.pddl
2017-09-15 17:53:02floriansetstatus: unread -> chatting
messages: + msg6531
summary: The translator simplifies conditional effects for binary variables in the method prune_stupid_effect_conditions in the following way: IF v=0 THEN v:=1 is simplified to v:=1 and IF v=1 THEN v:=0 is simplified to v:=0 This is problematic if both effects occur (for example in a "toggle-light-switch" action) because in this case (IF v=0 THEN v:=1) and (IF v=1 THEN v:=0) is simplified to (v:=0 and v:=1). ->
2017-09-15 17:52:48floriancreate