本文整理汇总了C++中Genome::setChromosome方法的典型用法代码示例。如果您正苦于以下问题:C++ Genome::setChromosome方法的具体用法?C++ Genome::setChromosome怎么用?C++ Genome::setChromosome使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Genome
的用法示例。
在下文中一共展示了Genome::setChromosome方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: crossover
void Genome::crossover(const Genome &with,Genome &baby1,Genome &baby2)
{
baby1.setFitness(0.0);
baby2.setFitness(0.0);
int crossoverPoint = NeuralNetRandom::RandomInt(0,numberOfGenes()-1);
std::vector<double> newChromosome1;
std::vector<double> newChromosome2;
std::vector<double>::iterator myGenes = _chromosome.begin();
std::vector<double> otherChromosome = with.chromosome();
std::vector<double>::iterator otherGenes = otherChromosome.begin();
if (crossoverPoint > 0)
{
newChromosome1.assign(myGenes,myGenes+crossoverPoint+1);
newChromosome2.assign(otherGenes,otherGenes+crossoverPoint+1);
}
newChromosome1.insert(newChromosome1.end(),otherGenes+crossoverPoint,otherChromosome.end());
newChromosome2.insert(newChromosome2.end(),myGenes+crossoverPoint,_chromosome.end());
baby1.setChromosome(newChromosome1);
baby2.setChromosome(newChromosome2);
}
示例2: mutate
void Genome::mutate(Genome &theGenome)
{
std::vector<double> chromosome = theGenome.chromosome();
for (int i=0;i<(int)chromosome.size();++i)
{
if (NeuralNetRandom::RandomFloat() < MutationRate)
chromosome[i] += NeuralNetRandom::RandomClamped()*MaxMutationPerturbation;
}
theGenome.setChromosome(chromosome);
}