AIMA.Core.Search.Informed.RecursiveBestFirstSearch.setMaxRecursiveDepth C# (CSharp) Method

setMaxRecursiveDepth() public method

public setMaxRecursiveDepth ( int recursiveDepth ) : void
recursiveDepth int
return void
	public void setMaxRecursiveDepth(int recursiveDepth) {
		int maxRdepth = metrics.getInt(MAX_RECURSIVE_DEPTH);
		if (recursiveDepth > maxRdepth) {
			metrics.set(MAX_RECURSIVE_DEPTH, recursiveDepth);
		}
	}