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

com.fathzer.games.ai.DepthFirstAI Maven / Gradle / Ivy

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