Update steps_limit then just run some additional steps.

Return the node corresponding to the found solution, or null if no solution is found.

Property definitions

ai $ BacktrackSolver :: run_steps
	# Update `steps_limit` then just run some additional steps.
	# Return the `node` corresponding to the found solution, or `null` if no solution is found.
	fun run_steps(steps: Int): nullable BacktrackNode[A]
	do
		steps_limit = self.steps + steps
		return run
	end
lib/ai/backtrack.nit:158,2--164,4