Issue540

Title log initial h values after evaluating the first state
Priority feature Status resolved
Superseder Nosy List jendrik, malte
Assigned To jendrik Keywords
Optional summary

Created on 2015-06-22.18:14:45 by jendrik, last changed by jendrik.

Messages
msg4377 (view) Author: jendrik Date: 2015-07-15.17:39:43
Merged and pushed.
msg4366 (view) Author: malte Date: 2015-07-14.22:45:47
Looks good!
msg4361 (view) Author: jendrik Date: 2015-07-14.19:55:37
I fixed the points raised in your code review and ran experiments. Here are the results:

http://ai.cs.unibas.ch/_tmp_files/seipp/issue540-v1-opt-issue540-base-issue540-v1-compare.html
http://ai.cs.unibas.ch/_tmp_files/seipp/issue540-v1-sat-issue540-base-issue540-v1-compare.html
msg4355 (view) Author: malte Date: 2015-07-12.20:00:10
The patch looks fine to me.

Given that the evaluators have caused significant overhead and this touches
sensitive parts of the code, I'd feel a bit happier if we could at least do a
small experiment, though. Something like blind search and lama-first on the
satisficing suite and blind and ipdb on the optimal suite. A 300 second timeout
should be plenty enough.
msg4272 (view) Author: malte Date: 2015-06-23.12:26:33
"we should cause it's" => "..its". Argh!
msg4271 (view) Author: malte Date: 2015-06-23.12:25:00
I'm not sure this is a good idea:

1) There is no way to tell from the output which state this applies to. It's the
first state that *this* heuristic has been evaluated for (with this search
progress object), but this can be any state if for some reason some heuristics
are sometimes skipped (e.g. selective max).

2) This function can be called from many different places, directly or
indirectly, so there is no control over where this output is generated. It could
be generated in the middle of unrelated information. For output that is
important to us, "explicit is better than implicit": we should cause it's
creation directly.

For what it's worth, I'm not sure this needs to live in the search progress
class at all, i.e., not sure we should really store the initial h values in an
attribute like we currently do. We could give the evaluation context a method
for dumping its stored information and then use this for the initial state.
msg4270 (view) Author: jendrik Date: 2015-06-23.12:08:34
Can't we log the initial h value directly when we process a heuristic for the first time in 
SearchProgress::process_heuristic_value()?

Here is my proposed change (of course other things could be removed and simplified then):

diff -r 737893533de3 src/search/search_progress.cc
--- a/src/search/search_progress.cc     Mon Jun 22 19:39:44 2015 +0200
+++ b/src/search/search_progress.cc     Tue Jun 23 12:06:57 2015 +0200
@@ -22,6 +22,7 @@
     if (was_inserted) {
         // We haven't seen this heuristic before.
         initial_heuristic_values[heuristic] = h;
+        output_line("Initial", heuristic, h);
         return true;
     } else {
         int &best_h = iter->second;
History
Date User Action Args
2015-07-15 17:39:43jendriksetstatus: chatting -> resolved
messages: + msg4377
2015-07-14 22:45:47maltesetmessages: + msg4366
2015-07-14 19:55:37jendriksetmessages: + msg4361
2015-07-12 20:00:10maltesetmessages: + msg4355
2015-06-23 12:26:33maltesetmessages: + msg4272
2015-06-23 12:25:00maltesetmessages: + msg4271
2015-06-23 12:08:34jendriksetstatus: unread -> chatting
messages: + msg4270
2015-06-22 18:14:45jendrikcreate