Content deleted Content added
mNo edit summary |
mNo edit summary |
||
Line 3:
Genetic algorithms are [[Implementation|implement]]ed as a [[computer simulation]] in which a [[population]] of [[abstract]] representations (called [[chromosome (genetic algorithm)|chromosomes]] or strings) of [[candidate solutions]] (called individuals, or agents) to an optimization problem evolves toward better [[Solution (business)|solution]]s. Traditionally, solutions are represented in binary as strings of 0s and 1s, but other encodings are also possible. The evolution usually starts from a population of randomly generated individuals and happens in generations. In each generation, the fitness of every individual in the population is evaluated, multiple individuals are stochastically selected from the current population (based on their fitness), and modified (mutated or recombined) to form a new population. The new population is then used in the next iteration of the algorithm.
The
== Design ==
|