Issue981

Title reevaluate lazy evaluators only for dirty states
Priority feature Status resolved
Superseder Nosy List jendrik, malte, salome, silvan
Assigned To Keywords
Optional summary

Created on 2020-09-22.12:04:01 by jendrik, last changed by jendrik.

Messages
msg9722 (view) Author: jendrik Date: 2020-09-22.12:46:45
You're right, in the main repository it does. I only looked at my clone and didn't recognize that recomputations are actually triggered by *my* changes. So all is good, sorry for the noise.
msg9721 (view) Author: malte Date: 2020-09-22.12:27:25
If a current cached estimate is available, doesn't the heuristic catch this and simply return the cached value without triggering a recomputation?
msg9720 (view) Author: jendrik Date: 2020-09-22.12:04:00
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.
History
Date User Action Args
2020-09-22 12:46:45jendriksetstatus: chatting -> resolved
messages: + msg9722
2020-09-22 12:27:25maltesetstatus: unread -> chatting
messages: + msg9721
2020-09-22 12:07:40silvansetnosy: + silvan
2020-09-22 12:04:01jendrikcreate