Actualiser Diagrammes/Diagramme_Bot.mmd

This commit is contained in:
2026-02-05 23:25:57 +01:00
parent 86a86f598c
commit c44e7495a4

View File

@@ -16,17 +16,18 @@ classDiagram
-listMoves(IBoard board): List<AbstractPly>
}
class DivineBot{
-me: Player
-maxDepth: int
-rng: Random
class DivineBot {
-me : Player
-maxDepth : int
-rng : Random
+DivineBot(Player p, int maxDepth)
+giveYourMove(IBoard board): AbstractPly
-alphaBeta(IBoard board, int depth, int alpha, int beta): int
-terminalValue(IBoard board): int
-evaluate(IBoard board): int
-listMoves(IBoard board): List<AbstractPly>
+giveYourMove(IBoard board) : AbstractPly
-alphaBeta(IBoard board, int depth, int alpha, int beta) : int
-evaluate(IBoard board) : int
-isIsolated(AvalamBoard b, int r, int c) : boolean
-isVulnerable(AvalamBoard b, int r, int c, Color enemyColor) : boolean
-listMoves(IBoard board) : List~AbstractPly~
}
class IdiotBot{