コード例 #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
ファイル: GeneModule.cs プロジェクト: lukastk/EvoSim
        public GeneInfo GetGeneInfo()
        {
            var dict = new GeneInfo();

            dict.AddGeneList("Genes", geneList);

            return(dict);
        }