Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Groupe3-TicTacToe
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BAHRMAN Louis
Groupe3-TicTacToe
Commits
ab11fe24
Commit
ab11fe24
authored
May 01, 2020
by
Timothy LAIRD
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pre-Merge commit
parent
b12b3e5f
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
26 additions
and
23 deletions
+26
-23
AlgoRechercheMCTS.class
build/classes/tictactoecodingame/AlgoRechercheMCTS.class
+0
-0
Node.class
build/classes/tictactoecodingame/Node.class
+0
-0
Player.class
build/classes/tictactoecodingame/Player.class
+0
-0
private.xml
nbproject/private/private.xml
+1
-1
AlgoRechercheMCTS.java
src/tictactoecodingame/AlgoRechercheMCTS.java
+18
-19
Node.java
src/tictactoecodingame/Node.java
+6
-2
Player.java
src/tictactoecodingame/Player.java
+1
-1
No files found.
build/classes/tictactoecodingame/AlgoRechercheMCTS.class
View file @
ab11fe24
No preview for this file type
build/classes/tictactoecodingame/Node.class
View file @
ab11fe24
No preview for this file type
build/classes/tictactoecodingame/Player.class
View file @
ab11fe24
No preview for this file type
nbproject/private/private.xml
View file @
ab11fe24
...
...
@@ -5,7 +5,7 @@
<url>
src/tictactoecodingame/AlgoRechercheMCTS.java
</url>
<bookmark
id=
"1"
>
<name/>
<line>
9
7
</line>
<line>
9
6
</line>
<key/>
</bookmark>
</file>
...
...
src/tictactoecodingame/AlgoRechercheMCTS.java
View file @
ab11fe24
...
...
@@ -15,34 +15,35 @@ import java.util.Random;
*/
public
class
AlgoRechercheMCTS
extends
AlgoRecherche
{
ArbreMCTS
search
;
int
maxIterations
;
public
AlgoRechercheMCTS
(
Joueur
player
,
Joueur
opponent
){
public
AlgoRechercheMCTS
(
Joueur
player
,
Joueur
opponent
,
int
m
){
search
=
new
ArbreMCTS
(
player
,
opponent
);
maxIterations
=
m
;
}
@Override
public
Coup
meilleurCoup
(
Plateau
_plateau
,
Joueur
_joueur
,
boolean
_ponder
)
{
search
=
new
ArbreMCTS
(
search
.
root
().
player
(),
search
.
root
().
opponent
());
Node
root
=
search
.
root
();
root
.
board
(
_plateau
);
_plateau
.
sauvegardePosition
(
0
);
int
iterations
=
0
;
Random
seed
=
new
Random
();
while
(
iterations
<
1
){
while
(
iterations
<
maxIterations
){
iterations
++;
Node
nextNode
=
selection
(
root
);
if
(!
nextNode
.
board
()
.
partieTerminee
()){
expansion
(
nextNode
);
if
(!
_plateau
.
partieTerminee
()){
expansion
(
nextNode
,
_plateau
);
}
if
(!
nextNode
.
children
().
isEmpty
()){
nextNode
=
nextNode
.
children
().
get
(
seed
.
nextInt
(
nextNode
.
children
().
size
()));
}
Joueur
winner
=
simulate
(
nextNode
);
Joueur
winner
=
simulate
(
nextNode
,
_plateau
);
update
(
winner
,
nextNode
);
_plateau
.
restaurePosition
(
0
);
}
Node
nextPlay
=
root
.
nextPlay
();
search
.
root
(
nextPlay
);
return
nextPlay
.
board
().
getDernierC
oup
();
return
nextPlay
.
c
oup
();
}
private
Node
selection
(
Node
root
){
...
...
@@ -53,28 +54,26 @@ public class AlgoRechercheMCTS extends AlgoRecherche {
return
currentNode
;
}
private
void
expansion
(
Node
leaf
){
ArrayList
<
Coup
>
coups
=
leaf
.
getCoups
(
);
private
void
expansion
(
Node
leaf
,
Plateau
leafPlateau
){
ArrayList
<
Coup
>
coups
=
leaf
Plateau
.
getListeCoups
(
leaf
.
player
()
);
Iterator
<
Coup
>
coup
=
coups
.
iterator
();
Plateau
leafPlateau
=
leaf
.
board
();
Coup
currentCoup
;
while
(
coup
.
hasNext
()){
currentCoup
=
coup
.
next
();
leafPlateau
.
joueCoup
(
currentCoup
);
Node
newLeaf
=
new
Node
(
leafPlateau
,
leaf
.
opponent
(),
leaf
.
player
(),
leaf
);
leafPlateau
.
annuleDernierCoup
();
Node
newLeaf
=
new
Node
(
currentCoup
,
leaf
.
opponent
(),
leaf
.
player
());
leaf
.
children
().
add
(
newLeaf
);
}
}
private
Joueur
simulate
(
Node
node
){
Plateau
board
=
node
.
board
();
private
Joueur
simulate
(
Node
node
,
Plateau
board
){
Joueur
p1
=
node
.
player
();
Joueur
p2
=
node
.
opponent
();
Joueur
currentPlayer
=
node
.
player
();
Random
seed
=
new
Random
();
Coup
coup
;
ArrayList
<
Coup
>
coups
;
while
(!
board
.
partieTerminee
()){
ArrayList
<
Coup
>
coups
=
board
.
getListeCoups
(
currentPlayer
);
Coup
coup
=
coups
.
get
(
seed
.
nextInt
(
coups
.
size
()));
coups
=
board
.
getListeCoups
(
currentPlayer
);
coup
=
coups
.
get
(
seed
.
nextInt
(
coups
.
size
()));
board
.
joueCoup
(
coup
);
if
(
currentPlayer
.
equals
(
p1
)){
currentPlayer
=
p2
;
...
...
src/tictactoecodingame/Node.java
View file @
ab11fe24
...
...
@@ -46,6 +46,10 @@ public class Node {
return
children
;
}
public
Coup
coup
(){
return
coup
;
}
public
void
addVisit
(){
visits
++;
}
...
...
src/tictactoecodingame/Player.java
View file @
ab11fe24
...
...
@@ -18,7 +18,7 @@ public class Player {
// Remplacer ici l'algorithme aléatoire par votre algorithme.
// Créer une nouvelle classe qui hérite de la class AlgoRecherche
AlgoRechercheMCTS
alea
=
new
AlgoRechercheMCTS
(
joueurOrdi
,
humain
);
// L'ordinateur joue au hasard
AlgoRechercheMCTS
alea
=
new
AlgoRechercheMCTS
(
joueurOrdi
,
humain
,
100
);
// L'ordinateur joue au hasard
joueurOrdi
.
setAlgoRecherche
(
alea
);
GrilleTicTacToe3x3
grille
=
new
GrilleTicTacToe3x3
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment