Files
BUT3ProjetJeuGroupe/Diagrammes/Diagramme_Bot.mmd

36 lines
967 B
Plaintext
Raw Normal View History

2026-01-30 10:44:58 +01:00
---
title: Bot - Diagramme de classes (complet)
---
classDiagram
class AlphaBetaBot{
-me: Player
-maxDepth: int
-rng: Random
+AlphaBetaBot(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 DivineBot{
2026-02-05 19:45:44 +01:00
-me: Player
-maxDepth: int
-rng: Random
2026-01-30 10:44:58 +01:00
2026-02-05 19:45:44 +01:00
+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>
2026-01-30 10:44:58 +01:00
}
class IdiotBot{
-rng: Random
+IdiotBot(Player p)
+giveYourMove(IBoard board): AbstractPly
}