R/mutation_operators.R

Defines functions mutation_operators

Documented in mutation_operators

#' Mutation operators available
#' 
#' List all available mutation operators in the ExpDE package
#' 
#' @return Character vector with the names of all mutation operators
#' 
#' @export

mutation_operators <- function(){
  c("best",
    "current-to-pbest",
    "mean",
    "none",
    "rand",
    "wgi")
}

Try the ExpDE package in your browser

Any scripts or data that you put into this service are public.

ExpDE documentation built on May 2, 2019, 9:11 a.m.