using System; using System.Collections; namespace aima.search.framework { /// /// Ported to .NET by Kris Noesgaard /// from the Java implementation by Ravi Mohan /// public interface NodeStore { void add(Node anItem); Node remove(); void add(ArrayList nodes); bool isEmpty(); int size(); } }