Mise à jour des diagrammes + SVG

This commit is contained in:
2026-02-05 19:45:44 +01:00
parent 2cf929e024
commit 023aa9d419
6 changed files with 55 additions and 13 deletions

View File

@@ -17,7 +17,16 @@ classDiagram
}
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>
}
class IdiotBot{