Beispiel #1
0
        public BestTrajectoryFinder(int depth)
        {
            _depth = depth;
            var capturer = new BfsTerritoryCapturer();

            _simulator = new SimpleGameSimulator(capturer);
            _scorer    = new GameStateScorer(capturer);
        }
 public GameStateScorer(BfsTerritoryCapturer territoryCapturer)
 {
     _territoryCapturer = territoryCapturer;
 }
Beispiel #3
0
 public SimpleGameSimulator(BfsTerritoryCapturer territoryCapturer)
 {
     _territoryCapturer = territoryCapturer;
 }