
com.fathzer.games.ai.DepthFirstAI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of games-core Show documentation
Show all versions of games-core Show documentation
A core library to help implement two players games.
The newest version!
package com.fathzer.games.ai;
import com.fathzer.games.util.exec.Interruptible;
/** An {@link AI} based on depth-first search algorithm.
* @param Implementation of the Move interface to use
* @param Implementation of the SearchParameters interface to use
*/
public interface DepthFirstAI extends AI, Interruptible {
/** Gets the statistic related to last search call.
* @return The statistics
*/
SearchStatistics getStatistics();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy