aboutsummaryrefslogtreecommitdiff
path: root/doc/diagrams/MCTSNode.pumlc
blob: 6ae8f35eb5dad58b1226a52b8b94847000ed2ee1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@startuml

class MCTSNode {
    int visits
    int score
    GameMove move
    MCTSNode parent
    MCTSNode[] children
    (int, int)[] unexploredVertices

    ucbForPlayer()
    selection()
    expansion()
    expansionForCoords(coords)
    simulation(nMatches, scoreDiffHeur)
}

@enduml