This repository has been archived on 2022-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
Othello/includes/minimax.h
2022-11-19 15:50:58 +01:00

20 lines
480 B
C

#ifndef OTHELLO_MINIMAX_H
#define OTHELLO_MINIMAX_H 1
#include <limits.h>
#include "joueur.h"
typedef struct jeu Jeu;
/* Joue le tour d'après l'algorithme Minimax */
void action_joueur_minimax(Jeu *jeu, int couleur);
/* Implémentation de Minimax */
int minimax(Jeu *jeu, int profondeur, Coups *positions, Jeton coup_choisi,
int joueur, int joueur_gagnant);
/* Calcule la valeur heuristique pour un coup */
int heuristique(Jeu *jeu, Jeton coup_choisi);
#endif