예제 #1
0
파일: GA.cs 프로젝트: RealityDaemon/UTAS
        private static DNA get_breeder_via_roulette(Population p)
        {
            DNA dna;

            int total = p.Count;

            dna = p.PickCandidate();

            return dna;
        }