Esempio n. 1
0
    public static PairChromosome Inherit(PairChromosome parent1, PairChromosome parent2)
    {
        Chromosome choice1;

        if (Random.value >= 0.5f)
        {
            choice1 = parent1.main;
        }
        else
        {
            choice1 = parent1.secondary;
        }

        Chromosome choice2;

        if (Random.value >= 0.5f)
        {
            choice2 = parent2.main;
        }
        else
        {
            choice2 = parent2.secondary;
        }

        var mutation = choice1.TryMutate(choice2); //наверно тут мог бы и в статике тоже прописать

        if (mutation != null)
        {
            if (Random.value >= 0.5f)
            {
                choice1 = mutation;
            }
            else
            {
                choice2 = mutation;
            }
        }

        if (Random.value >= 0.5f)
        {
            return(new PairChromosome(choice1, choice2));
        }
        else
        {
            return(new PairChromosome(choice2, choice1));
        }
    }
Esempio n. 2
0
    private List <PairChromosome> Inherit(List <PairChromosome> parent1, List <PairChromosome> parent2)
    {
        var list = new List <PairChromosome>();

        for (int i = 0; i < parent1.Count; ++i)
        {
            var item = PairChromosome.Inherit(parent1[i], parent2[i]);
            list.Add(item);
        }

        if (list[0].IsMutate(parent1[0], parent2[0]))
        {
            var mutationInfo = list[0].GetMutationInfo(parent1[0], parent1[0]);
            SetAllele(list, AlleleDictionary.GetAllele(mutationInfo.value), mutationInfo.isMain);
        }

        return(list);
    }
Esempio n. 3
0
    public bool IsMutate(PairChromosome parent1, PairChromosome parent2)
    {
        //Проверка есть ли отличие
        if (parent1.main is Species m1 &&
            parent1.secondary is Species s1 &&
            parent2.main is Species m2 &&
            parent2.secondary is Species s2)
        {
            if ((main != m1 && main != s1 && main != m2 && main != s2) ||
                (secondary != m1 && secondary != s1 && secondary != m2 && secondary != s2))
            {
                Debug.Log("Mutation succses");
                return(true);
            }
        }

        return(false);
    }
Esempio n. 4
0
    public MutationPairChromosomeInfo GetMutationInfo(PairChromosome parent1, PairChromosome parent2)
    {
        if (parent1.main is Species m1 &&
            parent1.secondary is Species s1 &&
            parent2.main is Species m2 &&
            parent2.secondary is Species s2)
        {
            if (main != m1 && main != s1 && main != m2 && main != s2)
            {
                return(new MutationPairChromosomeInfo((Species.ValueType)main.GetValue(), true));
            }
            else if (secondary != m1 && secondary != s1 && secondary != m2 && secondary != s2)
            {
                return(new MutationPairChromosomeInfo((Species.ValueType)secondary.GetValue(), false));
            }
        }

        Debug.LogError("[PairChromosome::GetMutateType] Mutation error!");
        return(null);
    }