Research Article
Prediction of Pathological Subjects Using Genetic Algorithms
Pseudocode 1
Pseudocode of the genetic algorithm.
| begin | | Create initial population; | | while (Until Stopping Criteria) | | for (Each Chromosome) | | Calculate fitness value; | | Selection (Survival of strong individuals); | | Crossover (Here, new generation produced); | | if (There are same chromosomes) | | Mutation (Changing some genes for new and | | different individuals); | | end | | end | | Generate new population; | | end | | end |
|