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