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.
|