Issue772

Title forbid duplicate variables in patterns
Priority wish Status resolved
Superseder Nosy List jendrik, malte, silvan
Assigned To jendrik Keywords
Optional summary

Created on 2018-04-03.10:00:34 by jendrik, last changed by jendrik.

Messages
msg7116 (view) Author: jendrik Date: 2018-05-04.18:45:48
I agree. The old behaviour (deleting duplicates and continuing) was a little 
unexpected, but now I think that it is just as valid as aborting in case 
duplicate variables are found. Let's leave things as they are :-)
msg7115 (view) Author: malte Date: 2018-05-04.18:38:14
I've left some code comments.

The fact that the change introduced several new bugs (wrong exit code, wrong
documentation) made me question the utility of this behaviour change somewhat.
I'm not against the change if implemented correctly, but I also don't think it
gains us anything. We are just replacing one set of behaviours with another one,
and apparently this isn't so easy to implement.
msg7114 (view) Author: malte Date: 2018-05-04.18:32:22
I'd be surprised if the genetic algorithm returned duplicate variables in a
pattern. If I recall correctly from the description of the algorithm, it
essentially encodes patterns as sets of variables (or as bit-strings where each
bit represents presence of absence of a given variable in a pattern). But I
never really looked at the code.

I don't mind making duplicate patterns illegal, but if we do, this has to be
documented in the user documentation.

Have you looked at the exit code 15 results in the experiment?
msg7113 (view) Author: jendrik Date: 2018-05-04.18:10:43
I made a pull request at https://bitbucket.org/jendrikseipp/downward/pull-requests/87 .

Revision issue772-v1 aborts with an error message if a pattern contains duplicate variables. 
We discussed offline that PDBs obtained with the genetic algorithm might contain duplicate 
variables, but the experiment below suggests that this is not the case:

http://ai.cs.unibas.ch/_tmp_files/seipp/issue772-v1-no-dominance-pruning.html

The pattern validation code in pdbs/validation.cc also prints a warning if a duplicate 
pattern has been found. Should I test whether we can also abort with an error message in that 
case?
msg6984 (view) Author: silvan Date: 2018-04-03.17:13:25
If printing on stderr, we must also abort, since we consider output to stderr an
error. I think it makes sense to abort with INPUT_ERROR.
msg6978 (view) Author: jendrik Date: 2018-04-03.11:16:54
I'll do so during the next Fast Downward meeting.
msg6973 (view) Author: malte Date: 2018-04-03.10:37:38
I have no strong thoughts on this. Can you ask the others for their preferred
behaviour?
msg6971 (view) Author: jendrik Date: 2018-04-03.10:00:34
Currently, the planner allows duplicate variables in patterns both in debug and release mode:

./fast-downward.py --debug ../benchmarks/gripper/prob01.pddl --search "astar(cpdbs(manual_patterns([[0, 0]])))"
./fast-downward.py --debug ../benchmarks/gripper/prob01.pddl --search "astar(pdb(manual_pattern([0, 0])))"
./fast-downward.py ../benchmarks/gripper/prob01.pddl --search "astar(cpdbs(manual_patterns([[0, 0]])))"

All invocations remove the duplicate variable (in the ctor of PDB), print a warning to stdout and successfully find a 
plan. I think it would be better to abort with an input error in this case or at least print the warning to stderr.
History
Date User Action Args
2018-05-04 18:45:48jendriksetstatus: chatting -> resolved
messages: + msg7116
2018-05-04 18:38:14maltesetmessages: + msg7115
2018-05-04 18:32:22maltesetmessages: + msg7114
2018-05-04 18:10:43jendriksetassignedto: jendrik
messages: + msg7113
2018-04-03 17:13:25silvansetnosy: + silvan
messages: + msg6984
2018-04-03 11:16:54jendriksetmessages: + msg6978
2018-04-03 10:37:38maltesetstatus: unread -> chatting
messages: + msg6973
2018-04-03 10:00:34jendrikcreate