ai :: SearchSolver :: depth_limit
States found above this limit are not considered.
Use 0 for no limit.
Default: 0
See also: iterative_deepening
	# Limit in the depth search.
	#
	# States found above this limit are not considered.
	#
	# Use 0 for no limit.
	# Default: 0
	# See also: `iterative_deepening`
	var depth_limit: Int = 0 is writable
					lib/ai/search.nit:319,2--326,37