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