archive.php

Author Archive

14
Jun

Ms. Pac-Man vs Ghosts Competition Coverage on the Web

cnet New Scientist (also see Geekosystem, Prosthetic Knowledge, Kurzweil AI, Science and Technology, Gizmodo (Australia), Gizmodo) I Programmer (also see Slashdot) Singularity Hub

25
May

Game Interface

public interface Game<GAME extends Game<GAME>> {     GAME copy();     int getCurrentPlayer(); // The players start from 0, 1, 2… and so on     boolean isGameOver();     int getMovesSize();     List<String> getMoves();     Outcome[] getOutcomes();     void makeMove(int move);     void reset();     String boardString(); }

10
May

CEC 2011 Ms Pac-Man vs Ghost Team Competition

Ms Pac-Man is a highly enjoyable yet challenging game that is usually viewed form the perspective of the Ms Pac-Man agent, and this has already been the subject of an on-going series of competitions. However, the game also provides an excellent environment for testing multi-agent strategies, by controlling the team of ghosts. This website contains [...]