The function described below selects the individuals that fit the best based on the predefined condition(aim/objective).
e.g.: To optimize the function \(f(x) = x^2 - 4x + 4\) to find the value of \(x\) that minimizes the function. \(x\): represents a possible value the an individual from the population can have.
selection(population, fitness, num_parents)
Arguments
The list of individuals of the population
The list of individuals(value) obtained from the function of genetic.algo.optimizeR
namely `evaluate_fitness`.
The number of selected individuals that fit the best with the predefined aim.
The output expected should be a list of selected individuals that fit the best with the predefined condition(aim/objective).
Examples# example of usage
library(genetic.algo.optimizeR)
population <- c(1, 3, 0)
# Evaluate fitness
fitness <- genetic.algo.optimizeR::evaluate_fitness(population)
print("Evaluation:")
#> [1] "Evaluation:"
print(fitness)
#> [1] 1 1 4
# Selection
selected_parents <- genetic.algo.optimizeR::selection(population, fitness, num_parents = 2)
print("Selection:")
#> [1] "Selection:"
print(selected_parents)
#> [1] 1 3
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4