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

20 lines
582 B
C
Raw Normal View History

2022-11-18 16:49:19 +01:00
#ifndef OTHELLO_MINIMAX_H
#define OTHELLO_MINIMAX_H 1
2022-11-19 11:40:52 +01:00
#include <limits.h>
2022-11-18 17:09:15 +01:00
#include "joueur.h"
2022-11-20 15:50:55 +01:00
/* Joue le tour d'après l'algorithme minimax */
2022-12-04 18:25:35 +01:00
void action_joueur_minimax(Jeu *jeu, const int couleur, const int profondeur);
2022-11-18 16:49:19 +01:00
2022-11-20 15:50:55 +01:00
/* Décide d'une case à jouer via l'algorithme minimax */
2022-11-28 21:06:59 +01:00
void _action_joueur_minimax(Jeu *jeu, int profondeur, const int couleur,
const int gagnant, int *ligne, int *colonne,
int *score);
2022-11-19 11:40:52 +01:00
/* Calcule la valeur heuristique pour un coup */
2022-11-28 21:06:59 +01:00
int heuristique(const Jeu *jeu, const int couleur);
2022-11-18 17:09:15 +01:00
2022-11-18 16:49:19 +01:00
#endif