23 lines
558 B
Java
23 lines
558 B
Java
package fr.iut_fbleau.Bot;
|
|
|
|
import fr.iut_fbleau.GameAPI.AbstractGamePlayer;
|
|
import fr.iut_fbleau.GameAPI.AbstractPly;
|
|
import fr.iut_fbleau.GameAPI.IBoard;
|
|
import fr.iut_fbleau.GameAPI.Player;
|
|
|
|
/**
|
|
* Bot Alpha-Beta (préparé).
|
|
* Pour l'instant non implémenté.
|
|
*/
|
|
public class AlphaBetaBot extends AbstractGamePlayer {
|
|
|
|
public AlphaBetaBot(Player p) {
|
|
super(p);
|
|
}
|
|
|
|
@Override
|
|
public AbstractPly giveYourMove(IBoard board) {
|
|
throw new UnsupportedOperationException("AlphaBetaBot non implémenté pour l'instant.");
|
|
}
|
|
}
|