In the eager search code, we currently reevaluate a lazy evaluator h for a state s if h has a cached estimate for s. I think this does more work than necessary though: if the cached estimate is not dirty, we don't need to recompute h(s).
I propose to add a method Evaluator::is_cached_estimate_dirty() and to recompute h(s) only if is_estimate_cached(s) and is_cached_estimate_dirty(s) both return true.
|