A simple output function used for logging purposes
stop = output_ga_default(gen_index, nb_generation, Pop, FObj_Pop, param)
The index of the current generation.
The maximum number of generations.
The current population.
The evaluation for each member of the population.
A parameter list for optional parameters.
A boolean. If %F, will stop the execution of the genetic algorithm.
This function displays information on the current step of the genetic algorithm.
Use this function to implement a callback after each iteration of the genetic algorithm. This can be used, for instance, to plot intermediate result or log more information on the population.
The output parameter stop
can be used to stop the genetic algorithm
altogether if set to %F.