using System; namespace aima.search.framework { /// /// Ported to .NET by Kris Noesgaard /// from the Java implementation by Ravi Mohan /// public interface StepCostFunction { double calculateStepCost(Object fromState, Object toState, string action); } }