mirror of
https://github.com/2OOP/pism.git
synced 2026-02-04 10:54:51 +00:00
bitboard fix & mcts v2 & mcts v3. v3 still in progress and v4 coming soon
This commit is contained in:
@@ -4,4 +4,7 @@ public interface TurnBasedGame<T extends TurnBasedGame<T>> extends Playable, Dee
|
||||
int getCurrentTurn();
|
||||
int getPlayerCount();
|
||||
int getWinner();
|
||||
|
||||
PlayResult getState();
|
||||
boolean isTerminal();
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user