Ejemplo n.º 1
0
        public Move NextMove(BoardState state)
        {
            var frontalLobe = new FrontalLobe(new RedisMemory(gen));

            return(frontalLobe.NextMove(new Game
            {
                CurrentBoard = state
            }));
        }
Ejemplo n.º 2
0
 public GameFinishedTrainer(IMemory memory, FrontalLobe frontalLobe)
 {
     this.memory      = memory;
     this.frontalLobe = frontalLobe;
 }