/** Interface for states that implement a heuristic. */ public interface Heuristic { /** Return heuristic value for state. */ public float h(); }