Issue47

Title bucket-open list: support of negative key values
Priority wish Status resolved
Superseder Nosy List erez, gabi, jendrik, malte
Assigned To gabi Keywords
Optional summary

Created on 2009-11-09.16:13:23 by gabi, last changed by gabi.

Messages
msg6151 (view) Author: gabi Date: 2017-02-24.14:25:23
We removed the bucket open list in issue683, so I am closing this issue.
msg3678 (view) Author: gabi Date: 2014-10-06.15:46:03
Once again, I give this up  for today because lab performs some magic that I did
not ask for and that makes it prohibitively expensive for me to analyze my
experiment data.
msg3665 (view) Author: malte Date: 2014-10-06.09:45:18
Perhaps it's good to try heuristics with different speeds and different amounts
of tie-breaking craziness. How about blind(), cg() and ff()?
msg3664 (view) Author: gabi Date: 2014-10-06.09:44:10
I think we should simply run some experiments to compare the bucket vector
implementation to the one using maps. If it has no advantage, we should get rid
of it entirely, otherwise we should exit with EXIT_UNSUPPORTED.

Malte, any suggestions which heuristics  we should use?
msg3647 (view) Author: malte Date: 2014-10-04.20:10:15
Gabi, do I remember correctly that you looked at these open lists recently? Any
insights about what is used and what should be removed?
msg294 (view) Author: malte Date: 2010-03-22.13:02:49
resolution:
 * get rid of the bucket-based open queue if it is not used
 * document that negative key values need to be supported
msg140 (view) Author: malte Date: 2009-11-27.16:57:56
I don't think support for negative values is needed, but it'd at least be good
to catch that, at least with an assertion.

Independently from this, we should drop the bucket-based implementation if it
has no compelling advantages. Being able to remove code is always good. I guess
some experiments would be good though. The most critical algorithm/performance
measure combo should be the runtime score of blind search. If the bucket-based
implementation does not help there, I doubt it'll help anywhere.
msg117 (view) Author: gabi Date: 2009-11-09.16:13:23
Currently, the BucketOpenList does not support negative key values and can only
be used with evaluators that resolve to non-negative values. 

As far as I see this, it is unlikely that it needs to be used with negative
values, but then it should warn if somebody tries to use it like this.

Alternatively, we could think about removing the bucket-based open list from the
trunk, because the map implementation is not significantly worse in the case of
unit action costs and in general better in the presence of action costs.

The third possibility would be to implement the support, which should not be a
big deal, either.
History
Date User Action Args
2017-02-24 14:25:23gabisetstatus: chatting -> resolved
messages: + msg6151
2014-10-06 15:46:03gabisetmessages: + msg3678
2014-10-06 14:31:53jendriksetnosy: + jendrik
2014-10-06 09:45:18maltesetmessages: + msg3665
2014-10-06 09:44:10gabisetmessages: + msg3664
2014-10-04 20:10:15maltesetmessages: + msg3647
2010-03-22 13:04:46maltesetassignedto: gabi
2010-03-22 13:02:49maltesetmessages: + msg294
2010-03-22 12:58:05maltesetnosy: + erez
2009-11-27 16:57:57maltesetstatus: unread -> chatting
messages: + msg140
2009-11-19 14:21:06maltesetnosy: + malte
2009-11-09 16:13:23gabicreate