using System; namespace aima.search.framework { /// /// Ported to .NET by Kris Noesgaard /// from the Java implementation by Ravi Mohan /// public class DefaultHeuristicFunction : HeuristicFunction { public int getHeuristicValue(Object state) { return 1; } } }