001 package aima.search.framework; 002 003 import java.util.List; 004 005 /** 006 * @author Ravi Mohan 007 * 008 */ 009 010 public interface Search { 011 List search(Problem p) throws Exception; 012 013 Metrics getMetrics(); 014 }