Exemple #1
0
        public Chromosome(int chromosomeLenght, Random random)
        {
                     
            for (int i = 0; i < chromosomeLenght; i++)
            {

                Genes.Insert(i, random.Next(2) == 0);
            }
        }