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

ai.libs.jaicore.search.algorithms.standard.astar.AStarEdgeCost Maven / Gradle / Ivy

package ai.libs.jaicore.search.algorithms.standard.astar;

import ai.libs.jaicore.search.model.travesaltree.BackPointerPath;

public interface AStarEdgeCost {
	public double g(BackPointerPath from, BackPointerPath to);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy