diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-11-09 22:19:57 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-11-09 22:19:57 +0100 |
commit | b3ace3075f22c50c99e2f1c3004fac2bbfee2989 (patch) | |
tree | 33d98c8308750a5506264a7ece8c15ed62e1eb90 /morpion_rec/NiAh/ia.h | |
parent | 67332d5f6542601fede361af23647bf3afaf19ee (diff) | |
download | CompetIA-b3ace3075f22c50c99e2f1c3004fac2bbfee2989.tar.gz CompetIA-b3ace3075f22c50c99e2f1c3004fac2bbfee2989.zip |
Update C template IA for morpion_rec from Alexis.
Diffstat (limited to 'morpion_rec/NiAh/ia.h')
-rw-r--r-- | morpion_rec/NiAh/ia.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/morpion_rec/NiAh/ia.h b/morpion_rec/NiAh/ia.h new file mode 100644 index 0000000..1174049 --- /dev/null +++ b/morpion_rec/NiAh/ia.h @@ -0,0 +1,15 @@ +/* IA pour morpion récursif - Alexis + * ia.h + * Définitions des fonctions nécéssaires à l'intelligence artificielle */ + +#ifndef IA_H +#define IA_H + +#include "main.h" + +Dots chooseFirstSubgrid(); +Dots chooseFirstMove(); +int pickUpMove(Dots grid[9][9], Boxes subgrid, Dots player, Boxes *move, Boxes firstSubgrid); + +#endif + |