R/ikk1.R

#' IKK1 test function generator.
#' 
#' @param in.dim [\code{integer(1)}] \cr
#'   Size of parameter space. Must be two.
#' @param out.dim [\code{integer(1)}] \cr
#'   Size of target space. Must be three.
#' @return A \code{mooFunction}.
#' 
#' @references 
#' wfg [51]
#' 
#' @aliases ikk1 IKK1
generateIKK1 = function(in.dim = 2L, out.dim = 3L) {
  in.dim = asCount(in.dim)
  out.dim = asCount(out.dim)
  
  if (in.dim != 2L)
    stop("IKK1 supports only in.dim = 2.")
  if (out.dim != 3L)
    stop("IKK1 supports only out.dim = 3.")
  
  param.set = makeNumericParamSet(id = "x", len = in.dim, lower = -50, upper = 50)
  
  paretoSet = NULL
  
  paretoFront = NULL
  
  mooFunction(
    name = "ikk1",
    id = sprintf("ikk1-%id-%id", in.dim, out.dim),
    fun = ikk1,
    in.dim = in.dim,
    out.dim = out.dim,
    param.set = param.set,
    paretoSet = paretoSet,
    paretoFront = paretoFront)
}

# Definiton of ikk1
ikk1 = function(x) {
  f1 = x[1L]^2
  f2 = (x[1L] - 20)^2
  f3 = x[2L]^2
  return(c(f1, f2, f3))
}
danielhorn/moobench documentation built on May 14, 2019, 4:04 p.m.