Exemple #1
0
        /// <summary>
        /// Runs a random walk of n steps along a landscape defined by a crossover operator and returns its results.
        /// </summary>
        /// <param name="steps">Number of steps.</param>
        /// <param name="searchOperator">Operator defining a neighbourhood.</param>
        /// <returns></returns>
        public RandomWalk RandomWalk(int steps, CrossoverOperator searchOperator)
        {
            RandomWalk statistics = new RandomWalk(steps);
            Chromosome parent1 = ChromosomeFactory.RandomSolution(Problem.GeneCount(), Problem);
            Chromosome parent2 = ChromosomeFactory.RandomSolution(Problem.GeneCount(), Problem);
            bool       firstParent = RandomGeneratorThreadSafe.NextBool();
            Chromosome parent = (firstParent ? parent1 : parent2), child;

            GatherData(parent, 0, statistics);

            const int minPopSize = 8, maxPopSize = 15;
            int       popSize = RandomGeneratorThreadSafe.NextInt(minPopSize, maxPopSize);

            Chromosome[] supportPopulation = new Chromosome[popSize];
            for (int i = 0; i < popSize; ++i)
            {
                supportPopulation[i] = ChromosomeFactory.RandomSolution(Problem.GeneCount(), Problem);
            }

            IGene[] childGenes1, childGenes2;
            for (int i = 0; i < steps; ++i)
            {
                searchOperator.Run(parent1.Genes, parent2.Genes, out childGenes1, out childGenes2);
                child = ChromosomeFactory.MakeChromosome(Problem, RandomGeneratorThreadSafe.NextBool() ? childGenes1 : childGenes2);
                GatherData(child, i, statistics);
                parent1 = child;
                parent2 = supportPopulation[RandomGeneratorThreadSafe.NextInt(popSize)];
            }

            return(statistics);
        }
Exemple #2
0
        /// <summary>
        /// Runs a random walk of n steps along a landscape defined by a mutation operator and returns its results.
        /// </summary>
        /// <param name="steps">Number of steps.</param>
        /// <param name="searchOperator">Operator defining a neighbourhood.</param>
        /// <returns></returns>
        public RandomWalk RandomWalk(int steps, MutationOperator searchOperator)
        {
            RandomWalk statistics      = new RandomWalk(steps);
            Chromosome currentSolution = ChromosomeFactory.RandomSolution(Problem.GeneCount(), Problem);

            GatherData(currentSolution, 0, statistics);
            for (int i = 1; i < steps; ++i)
            {
                searchOperator.Run(ref currentSolution);
                GatherData(currentSolution, i, statistics);
            }
            return(statistics);
        }
Exemple #3
0
        /// <summary>
        /// Gathers an information about random walk step (an index and fitness function value)
        /// on landscape defined by a mutation operator.
        /// </summary>
        /// <param name="solution">A solution.</param>
        /// <param name="step">Index of a step.</param>
        /// <param name="statistics">Statistics of the walk.</param>
        protected void GatherData(Chromosome solution, int step, RandomWalk statistics)
        {
            float fitness = FitnessFunction.Get(solution);

            statistics[step] = fitness;
        }
Exemple #4
0
        /// <summary>
        /// Gathers an information about random walk step (an index and fitness function value)
        /// on landscape defined by a crossover operator.
        /// </summary>
        /// <param name="solution1">First solution.</param>
        /// <param name="solution2">Second solution.</param>
        /// <param name="step">Index of a step.</param>
        /// <param name="statistics">Statistics of the walk.</param>
        protected void GatherData(Chromosome solution1, Chromosome solution2, int step, RandomWalk statistics)
        {
            float fitness1 = FitnessFunction.Get(solution1);
            float fitness2 = FitnessFunction.Get(solution2);

            statistics[step]     = fitness1;
            statistics[step + 1] = fitness2;
        }