示例#1
0
文件: Genome.cs 项目: lukastk/EvoSim
        public GeneInfo GetGeneInfo()
        {
            var dict = new GeneInfo();

            dict.AddGeneList("Body", BodyGenes);
            dict.AddGeneList("Mutation", MutationGenes);

            dict.AddMiscGeneInfo(NetChromosome.GetGeneInfo());

            return(dict);
        }
示例#2
0
        public GeneInfo GetGeneInfo()
        {
            var dict = new GeneInfo();

            dict.AddGeneList("Genes", geneList);

            return(dict);
        }