001    package aima.search.framework;
002    
003    /**
004     * @author Ravi Mohan
005     * 
006     */
007    
008    public interface StepCostFunction {
009            Double calculateStepCost(Object fromState, Object toState, String action);
010    }