R/variation_none.R

Defines functions variation_none

Documented in variation_none

#' Identity operator
#'
#' Identity operator (no variation performed)
#'
#' Performs the identity operator (no variation). This routine is included to
#' simplify the use of automated tuning / design tools such as Iterated Racing.
#'
#' @param X Population matrix
#' @param ... other parameters (included for compatibility with generic call)
#'
#' @return Input matrix `X`
#'
#' @export

variation_none <- function(X, ...){
  return(X)
}

Try the MOEADr package in your browser

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

MOEADr documentation built on Jan. 9, 2023, 1:24 a.m.