nsga_Selection {rmoo}R Documentation

Selection operators in non-dominated genetic algorithms

Description

Functions implementing selection non-dominated genetic operator.

Usage

  nsga_lrSelection(object, r, q)
  nsga_tourSelection(object, k = 3, ...)

  nsgabin_lrSelection(object, r, q)
  nsgabin_tourSelection(object, k = 3, ...)

  nsgareal_lrSelection(object, r, q)
  nsgareal_tourSelection(object, k = 3, ...)

  nsgaperm_lrSelection(object, r, q)
  nsgaperm_tourSelection(object, k = 3, ...)

Arguments

object

An object of class "nsga", "nsga2" or "nsga3", usually resulting from a call to function nsga, nsga2 or nsga3.

r

A tuning parameter for the specific selection operator.

q

A tuning parameter for the specific selection operator.

k

A tuning parameter for the specific selection operator.

...

Further arguments passed to or from other methods.

Value

Return a list with two elements:

population

a matrix of dimension object@popSize times the number of decision variables containing the selected individuals or strings;

fitness

a vector of length object@popSize containing the fitness values for the selected individuals.

Author(s)

Francisco Benitez

References

Scrucca, L. (2017) On some extensions to 'GA' package: hybrid optimisation, parallelisation and islands evolution. The R Journal, 9/1, 187-206, doi: 10.32614/RJ-2017-008.

See Also

nsga(), nsga2() and nsga3()


[Package rmoo version 0.2.0 Index]