The progress statistics in the eager search algorithm are currently a bit
confusing because some of them refer to *expanded* states, others to *generated*
states. For example, consider this fragment of output in the Elevators domain
(option "ou"):
f = 47 [551962 evaluated, 52462 expanded, 64 reopened, t=159.9s]
f = 48 [768713 evaluated, 76110 expanded, 64 reopened, t=222.63s]
f = 49 [1018454 evaluated, 103685 expanded, 64 reopened, t=295.17s]
Best heuristic value: 6 [expanded 103753 state(s)]
f = 50 [1362992 evaluated, 138060 expanded, 80 reopened, t=393.26s]
f = 51 [1916551 evaluated, 192159 expanded, 84 reopened, t=553.87s]
Best heuristic value: 0 [expanded 192172 state(s)]
f = 52 [2571654 evaluated, 255295 expanded, 116 reopened, t=742.23s]
The "f = ..." output lines correspond to expanded states, but the "Best
heuristic value: ..." lines correspond to generated states. That's somewhat
confusing, as it would be natural to assume that the lines after something like
"f = 51" correspond to states that belong *to that f layer*, which is not the case.
Suggested change: Only create output for *expanded* states, not generated states.
|