Instead of having landmark factories *generate* landmark graphs, have them
*modify* landmark graphs.
So their signature would be:
bool LandmarkFactory::discover(LandmarkGraph &lm_graph)
and they would
1. Utilize the information already present in the landmarks graph (for example,
backchain from existing landmarks rather than just goals).
2. Add landmarks/orderings to the given graph
This would allow us to create a landmarks graph that is the combination of
several landmark generation methods.
I suggest the method return whether it modified the graph or not, which would
allow us to iteratively combine landmark generation methods until we reach a
fixpoint.
|