【发布时间】:2016-06-28 14:36:04
【问题描述】:
在细胞遗传算法中:
for each cell in the grid do in parallel
generate a random individual
end parallel for
while not termination condition do
for each cell in the grid do in parallel
Evaluate individual
Select individual(s) in the neighbourhood ( )
Produce offspring
Evaluate offspring
Assign one of the offspring to cell according to some criterion
end parallel for
end while
为什么在选择父母之前必须对个人进行评估? (第 6 行)。据我了解,必须在应用运算符后对自豪的个体(即后代)进行评估。
【问题讨论】:
标签: genetic-algorithm evolutionary-algorithm