Right now there are many practical concerns with handling this planner-internally.
Memory overflows are one; another is that we'd need to be able to interrupt the
code at many points, not just during search. For example:
- LM construction can time out
- M&S heuristic construction can time out
- a single heuristic evaluation of h^m can time out
So we'd need lots of places where we check the timeouts *and* a way to
gracefully bail out without losing memory resources at all these checkpoints. So
we'd have to deal with partially constructed heuristics objects etc. It's
possible, but it won't be easy to get right and will be quite a bit of work.
So right now I think just killing and restarting is a more practical solution.
Of course that means reparsing etc., and that's not great, but it's also usually
not terrible.
Another consideration is that if we'd do all this planner-internally, we should
delay constructing heuristics etc. until they are really needed, and discard
them as soon as they are no longer needed. For example, right now it's not
possible to do something like this:
- construct heuristic h1 (say, an LM heuristic)
- do a search with h1
- release the memory associated with h1
- construct heuristic h2 (say, a M&S heuristic)
- do a search with h2
- release the memory associated with h2
(OK, we can make it possible in some cases where we don't need to predefine
heuristics with --heuristic, but in many cases we must do that, e.g. to use a
heuristic both for its estimates and for preferred operators.)
If we want to handle things like this planner-internally, we would need a way to
limit the lifetime of declared heuristics, landmark graphs and similar objects.
|