When using local search the choosen_node event is never raised, so visited_nodes is allways 0. How should we count "visited nodes" on algorithms like beam or genetic?
In my opinion, everytime that the "goodness" of a node is evaluated (either the cost of an edge or the fitness of a node) that should count as a "visited node".
When using local search the choosen_node event is never raised, so visited_nodes is allways 0. How should we count "visited nodes" on algorithms like beam or genetic?