The short version:
After a bit of debugging, I was able to come to this conclusion: the uniform
cost partitioning in the new version is better, even without action landmarks.
To be more exact - my old uniform cost partitioning had a bug, and everything is
fine with the new version :-)
The long version:
I noticed that on blocks-9-1, even when disabling action landmarks, there was a
difference in the initial state heuristic (14 vs. 16). I tracked this down to
the following problem with the old uniform cost partitioning:
If X is a landmark, and A is an achiever of X, then X is assigned a cost of
cost(A) / number_of_landmark_effects(A).
number_of_landmark_effects(A) considers the status of landmarks (only considers
landmarks that are not reached), but does not consider if A is a first achiever
or a possible achiever. So that at the initial state, if A is a first achiever
of X, and a possible (not first) achiever of Y, then X would be assigned a cost
of 0.5 instead of 1.
|