Issue185

Title eager search should use more suitable data structure for preferredness tests
Priority bug Status resolved
Superseder Nosy List erez, gabi, malte
Assigned To Keywords
Optional summary

Created on 2011-01-05.00:35:58 by malte, last changed by gabi.

Messages
msg2513 (view) Author: gabi Date: 2013-06-25.15:37:47
Ok, let's close this.
msg2511 (view) Author: malte Date: 2013-06-25.15:04:10
I'm fine marking this as closed. While set<...> is rarely the best solution, we
have much more pressing things to worry about in the search code. If you agree,
please close this.
msg2510 (view) Author: gabi Date: 2013-06-25.14:59:52
This issue is already quite old and it is not clear what should be done here. Malte?
msg1039 (view) Author: malte Date: 2011-01-05.16:32:15
I see. I faintly remember discussing this in the past, but I guess I forgot the
details.

Sets are not great performance-wise either, but let's leave this as is for now
to avoid messing up the evaluation order shortly before the IPC. I'd suggest
revisiting this later though, so I'll leave this one open.
msg1032 (view) Author: erez Date: 2011-01-05.06:34:58
preferred_ops is a set - exactly because of that.

set<const Operator *> preferred_ops;
msg1020 (view) Author: malte Date: 2011-01-05.00:35:58
Classifying this as "bug" since I see it as a performance bug.

This line in the eager search code:
       bool is_preferred = (preferred_ops.find(op) != preferred_ops.end());
is no good. There are cases where we cannot afford a linear search in this case.

One temporary fix would by introducing additional "markers" in the operators
like the one that exist already.
History
Date User Action Args
2013-06-25 15:37:47gabisetstatus: chatting -> resolved
messages: + msg2513
2013-06-25 15:04:10maltesetmessages: + msg2511
2013-06-25 14:59:52gabisetmessages: + msg2510
2011-01-05 16:32:15maltesetmessages: + msg1039
title: eager search uses O(N) preferredness test in inner loop -> eager search should use more suitable data structure for preferredness tests
2011-01-05 06:34:58erezsetstatus: unread -> chatting
messages: + msg1032
2011-01-05 00:35:58maltecreate