Research Article

Feature Selection for Very Short-Term Heavy Rainfall Prediction Using Evolutionary Computation

Pseudocode 2

The pseudocode of a genetic algorithm.
Create an initial population of size ;
repeat
  for     to  
   choose and from the population;
    = crossover( , );
    = mutation( );
  end for
  replace(population, [ , , …, ]);
until (stopping condition);
return the best solution;