Issue156

Title refactor landmark code 2: allow combining landmark generation methods
Priority wish Status resolved
Superseder Nosy List erez, jendrik, malte, silvan, silvia
Assigned To Keywords
Optional summary

Created on 2010-12-14.17:15:56 by erez, last changed by jendrik.

Messages
msg6173 (view) Author: jendrik Date: 2017-03-14.15:23:08
We discussed this in a meeting and found that we are fine with the current 
behaviour of lm_merged().
msg4523 (view) Author: jendrik Date: 2015-07-28.17:58:57
Another thing we should keep track of is to only add the relevant options to each 
landmark generator (see original discussion in issue563).
msg1509 (view) Author: erez Date: 2011-08-08.10:32:20
Good point. I've opened a new issue, issue257
msg1505 (view) Author: malte Date: 2011-08-08.10:27:51
> This is probably because some orderings are lost during merging.
> We need to think about this when we're working on this.

This point should be unrelated to the question whether the merging is done
on-the-fly or in a separate step. The sequence of insertions to the final merged
landmark graph is the same in both cases.

If there are no bugs, I expect that the loss in precision is due to the fact
that our implementation always drops a disjunctive landmark "A or B" when "A" is
also present, which can be suboptimal if "A or B" has orderings that "A" does
not have.
msg1503 (view) Author: erez Date: 2011-08-08.10:22:25
One example of why we need this: In depots03, using the merged graph (with the 
old logic) of RHW and lm_hm(m=1) leads to more expanded states than just with the 
RHW graph, when using optimal cost partitioning.
This is probably because some orderings are lost during merging.
We need to think about this when we're working on this.
msg860 (view) Author: erez Date: 2010-12-14.17:15:56
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.
History
Date User Action Args
2017-03-14 15:23:08jendriksetstatus: chatting -> resolved
messages: + msg6173
2015-07-28 17:58:57jendriksetnosy: + jendrik
messages: + msg4523
2011-08-08 10:32:20erezsetmessages: + msg1509
2011-08-08 10:27:51maltesetmessages: + msg1505
2011-08-08 10:22:25erezsetmessages: + msg1503
2010-12-14 17:15:56erezcreate