All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.livae.util.search.astar.Heuristic Maven / Gradle / Ivy

package com.livae.util.search.astar;

public interface Heuristic {

	public int calculateHeuristic(State state);

	public String getName();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy