using System; using System.Collections; namespace aima.search.framework { /// /// Ported to .NET by Kris Noesgaard /// from the Java implementation by Ravi Mohan /// public interface Search { ArrayList search(Problem p); //throws exception Metrics getMetrics(); } }