Found a bug in the iPDB implementation
(search/pdbs/pattern_generation_haslum.h/.cc):
The average cost over all operators (named average_operator_cost throughout) is
computed in the initialize() method, which passes it to the hill_climbing
method, which passes it on to sample_states, where it is used to compute an
estimate of plan length. The average is (of course) represented by a double,
everywhere except in the parameter to the hill_climbing method. This means the
average gets rounded down when it's passed through hill_climbing, which means
that when it is < 1, the value that reaches sample_states is 0, which has
undesirable consequences.
|