using System; namespace aima.search.framework { /// /// Ported to .NET by Kris Noesgaard /// from the Java implementation by Ravi Mohan /// public class TreeSearch : QueueSearch { protected override void addExpandedNodesToFringe(NodeStore fringe, Node node, Problem problem) { fringe.add(expandNode(node, problem)); } } }