Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Projet_info
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
TRAN Alain
Projet_info
Commits
a035b988
Commit
a035b988
authored
Apr 20, 2020
by
MACE Lloyd
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Class UCT
parent
87281831
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
0 deletions
+52
-0
UCT.java
src/mcts/UCT.java
+52
-0
No files found.
src/mcts/UCT.java
0 → 100644
View file @
a035b988
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package
mcts
;
import
java.util.Collections
;
import
java.util.Comparator
;
/**
*
* @author Lloyd
*/
public
class
UCT
{
public
static
double
calculUCT
(
int
nbVisiteParent
,
int
nbVictoire
,
int
nbVisiteEnfant
,
double
coefficientUCT
)
{
if
(
nbVisiteEnfant
==
0
)
{
return
Integer
.
MAX_VALUE
;
}
return
((
double
)
nbVictoire
/(
double
)
nbVisiteEnfant
+
coefficientUCT
*
Math
.
sqrt
(
Math
.
log
(
nbVisiteParent
)/(
double
)
nbVisiteEnfant
));
}
public
static
Noeud
trouverNoeudPrometteur
(
Noeud
noeud
,
double
coefficient
)
{
int
nbVisiteParent
=
noeud
.
getEtat
().
getNbVisite
();
Noeud
noeudPrometteur
=
null
;
double
uctNoeudPrometteur
=
Integer
.
MIN_VALUE
;
for
(
Noeud
enfant
:
noeud
.
getListeEnfant
())
{
int
nbVictoireEnfant
=
enfant
.
getEtat
().
getNbVictoire
();
int
nbVisiteEnfant
=
enfant
.
getEtat
().
getNbVisite
();
double
valeurUCTenfant
=
calculUCT
(
nbVisiteParent
,
nbVictoireEnfant
,
nbVisiteEnfant
,
coefficient
);
if
(
valeurUCTenfant
>
uctNoeudPrometteur
)
{
uctNoeudPrometteur
=
valeurUCTenfant
;
noeudPrometteur
=
enfant
;
}
}
return
noeudPrometteur
;
}
/* // no such element exeption
public static Noeud trouverMeilleurNoeud(Noeud noeud, double coefficient) {
int nbVisiteParent = noeud.getEtat().getNbVisite();
return Collections.max(
noeud.getListeEnfant(),
Comparator.comparing(c -> calculUCT(nbVisiteParent, c.getEtat().getNbVictoire(), c.getEtat().getNbVisite(), coefficient)));
}
*/
}
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