I copy excerpts of my comment from the pull request at bitbucket in order to
have it also in the discussion here:
I think we should clarify what exactly we want to limit here: is it the time the
whole pattern generation method is allowed? This is what is currently done with
the timer instancer of the class, and this is not what I would expect from the
description of this option, which says "time limit for finding patterns".
Otherwise, if the time limit is meant to affect the hill-climbing procedure,
then we should only compare against the local timer of the hill-climbing method.
I would strongly vote in favor of the second variant: compare against the
hill-climbing timer. I don't think that we would ever want to limit the total
time of the ipdb approach, because we want to at least have all the pdbs for the
goal variables. Then, setting the max_time to 0 would also make sense, because
we would perform no hill-climbing at all and end up with the goal variable pdbs.
Otherwise, setting the parameter to 0 would imply that no abstraction heuristic
would be built at all. Furthermore, we currently do not compare against the
timer during the computation of the initial pattern collection, so we always
build the pdbs for all goal variables (which is good!).
If we settle for this alternative, I would also change the description for this
option to "maximum time in seconds for improving the initial pattern collection
via hill climbing. If set to 0, no hill climbing is performed at all". We could
then also *not* call hill_climbing at all if the max_time parameter is set to 0.
|