Research Article

A Comparative Study of EAG and PBIL on Large-Scale Global Optimization Problems

Algorithm 1

Parameter tuning mechanism for EAG and PBIL.
EAG
for     from  10  to  100  Step  10
for    from  0.1  to  1.0  Step  0.1
  for    from  0.1  to  1.0  Step  0.1
   Record  solution-fitness  value
  end_for
end_for
end_for  
PBIL
for     from  10  to  100  Step  10
for    from  0.1  to  1.0  Step  0.1
  for    from  0.01  to  0.1  Step  0.01
   for    from  0.01  to  0.1  Step  0.01
    Record  solution-fitness  value
   end_for
  end_for
end_for
end_for