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

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

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

import ai.libs.jaicore.search.algorithms.standard.bestfirst.BestFirst;
import ai.libs.jaicore.search.probleminputs.GraphSearchWithNumberBasedAdditivePathEvaluation;

/**
 * A* algorithm implementation that is nothing else than BestFirst with a
 * specific problem input.
 *
 * @author Felix Mohr
 */
public class AStar extends BestFirst, N, A, Double> {

	public AStar(GraphSearchWithNumberBasedAdditivePathEvaluation problem) {
		super(problem);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy