bitboard fix & mcts v2 & mcts v3. v3 still in progress and v4 coming soon

This commit is contained in:
ramollia
2026-01-07 14:39:38 +01:00
parent e149588b60
commit df93b44d19
10 changed files with 568 additions and 29 deletions

View File

@@ -4,4 +4,7 @@ public interface TurnBasedGame<T extends TurnBasedGame<T>> extends Playable, Dee
int getCurrentTurn();
int getPlayerCount();
int getWinner();
PlayResult getState();
boolean isTerminal();
}

View File

@@ -11,7 +11,6 @@ import org.toop.framework.gameFramework.model.game.TurnBasedGame;
*/
public abstract class AbstractPlayer<T extends TurnBasedGame<T>> implements Player<T> {
private final Logger logger = LogManager.getLogger(this.getClass());
private final String name;
/**