コード例 #1
0
        public void MutatePopulationTest()
        {
            GameGeneticAlgorithm gameGenetic = new GameGeneticAlgorithm(
                new GameRunningCube.DbContext.PopulationRepository(),
                new PopulationMapper(),
                new GameSettings()
            {
                MuationPercent = 100
            }
                );

            GlobalVariables.Random = new Random(10);
            List <Population> pop = new List <Population>()
            {
                new Population(999999, "2131", 0, 0, 1),
                new Population(999998, "2231", 0, 0, 2),
                new Population(999997, "2223", 0, 0, 3)
            };

            var pop2 = gameGenetic.MutatePopulation(pop);
            int sum  = 0;

            pop2.ForEach(x => {
                sum += x.Mutations;
            });
            int result = pop2.Count * (pop.First().AiMoves.Count / 3);

            Assert.IsNotNull(pop2[1]);
            Assert.AreEqual(sum, result);
        }
コード例 #2
0
        public GameBoard(GameSettings settings) : this()
        {
            Settigns         = settings;
            GeneticAlgorithm = new GameGeneticAlgorithm(PopulationRepository, PopulationMapper, Settigns);
            if (settings.Tryb == GameMode.Test)
            {
                SetDefaultTest();
            }

            else
            {
                SetDefaultValues();
            }
        }
コード例 #3
0
        public void MakeChildTest()
        {
            GameGeneticAlgorithm gameGenetic = new GameGeneticAlgorithm(
                new GameRunningCube.DbContext.PopulationRepository(),
                new PopulationMapper(),
                new GameSettings()
                );

            Population first = new Population(1, "1111", 1, 0, 2);
            Population sec   = new Population(1, "0000", 0, 0, 3);

            var result = gameGenetic.MakeChild(first, sec);

            Assert.IsTrue(result.AiMoves.Count == 4);
            Assert.IsTrue(IsListValuesEquals(result.AiMoves, new List <int> {
                0, 0, 0, 1
            }));
        }