Research Article

Developing Programming Tools to Handle Traveling Salesman Problem by the Three Object-Oriented Languages

Algorithm 9

Steady-state GA pseudocodes.
1for (i = 0; i < gen-size; i++)
2{
3Get father and mother from population;
4Child(s)  <-  crossover(father,mother);
5LS may be apply on child tour(s);
6index  <-  get_inddex();
7population[index]  <-  child;
9}