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/alphabeta.h

15 lines
503 B
C
Raw Normal View History

2022-11-21 00:40:53 +01:00
#ifndef OTHELLO_ALPHABETA_H
#define OTHELLO_ALPHABETA_H 1
#include "minimax.h"
/* Joue le tour d'après l'algorithme alpha-beta */
2022-12-04 18:25:35 +01:00
void action_joueur_alphabeta(Jeu *jeu, const int couleur, const int profondeur);
2022-11-21 00:40:53 +01:00
/* Décide d'une case à jouer via l'algorithme alpha-beta */
void _action_joueur_alphabeta(Jeu *jeu, int profondeur, int couleur,
2022-11-28 21:06:59 +01:00
const int gagnant, int *ligne, int *colonne,
int *score, const int note, const int qui);
2022-11-21 00:40:53 +01:00
#endif