16 lines
502 B
C
16 lines
502 B
C
#ifndef OTHELLO_ALPHABETA_H
|
|
#define OTHELLO_ALPHABETA_H 1
|
|
|
|
#include <limits.h>
|
|
|
|
#include "minimax.h"
|
|
|
|
/* Joue le tour d'après l'algorithme alpha-beta */
|
|
void action_joueur_alphabeta(Jeu *jeu, const int couleur);
|
|
|
|
/* Décide d'une case à jouer via l'algorithme alpha-beta */
|
|
void _action_joueur_alphabeta(Jeu *jeu, int profondeur, int couleur,
|
|
const int gagnant, int *ligne, int *colonne,
|
|
int *score, const int note, const int qui);
|
|
|
|
#endif
|