Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
output_ga_default
A simple output function used for logging purposes
Syntax
stop = output_ga_default(gen_index, nb_generation, Pop, FObj_Pop, param)
Arguments
- gen_index
- The index of the current generation. 
- nb_generation
- The maximum number of generations. 
- Pop
- The current population. 
- FObj_Pop
- The evaluation for each member of the population. 
- param
- A parameter list for optional parameters. 
- stop
- A boolean. If %F, will stop the execution of the genetic algorithm. 
Description
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.
See also
- optim_moga — multi-objective genetic algorithm
- optim_nsga — A multi-objective Niched Sharing Genetic Algorithm
- optim_nsga2 — A multi-objective Niched Sharing Genetic Algorithm version 2
| Report an issue | ||
| << mutation_ga_default | Utilities | pareto_filter >> |