The number of (potential) revisits of node.

This information can be used to debug search algorithms. And to detect when heuristics are not admissible.

See SearchSolver::revisits and SearchSolver::do_revisit for details.

Property definitions

ai $ SearchNode :: revisits=
	# The number of (potential) revisits of `node`.
	# This information can be used to debug search algorithms.
	# And to detect when heuristics are not admissible.
	#
	# See `SearchSolver::revisits` and `SearchSolver::do_revisit`
	# for details.
	var revisits: Int = 0
lib/ai/search.nit:677,2--683,22