0
を選択する前に、個々の評価:セルラー遺伝的アルゴリズム - セルラー遺伝的アルゴリズムでは、両親
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)。私が理解するように、評価は、オペレータを適用した後に誇りを持った個人(すなわち、子孫)に対して行わなければならない。
個人が高い適合度を持ち、親になるための良い候補者である場合、この場合、後で置き換えられる子供は何ですか(10行目)? – Nasser