R/sof.sphere.R

Defines functions makeSphereFunction

Documented in makeSphereFunction

#' @title
#' Sphere Function
#'
#' @description
#' Also known as the the \dQuote{De Jong function 1}. Convex, continous function
#' calculated via the formula
#' \deqn{f(\mathbf{x}) = \sum_{i=1}^{n} \mathbf{x}_i^2}
#' with box-constraints \eqn{\mathbf{x}_i \in [-5.12, 5.12], i = 1, \ldots, n}.
#' 
#' @return
#' An object of class \code{SingleObjectiveFunction}, representing the Sphere Function.
#'
#' @references M. A. Schumer, K. Steiglitz, Adaptive Step Size Random Search,
#' IEEE Transactions on Automatic Control. vol. 13, no. 3, pp. 270-276, 1968.
#'
#' @template arg_dimensions
#' @template ret_smoof_single
#' @export
makeSphereFunction = function(dimensions) {
  assertCount(dimensions)
  force(dimensions)
  makeSingleObjectiveFunction(
    name = paste(dimensions, "-d Sphere Function", sep = ""),
    id = paste0("sphere_", dimensions, "d"),
    fn = function(x) {
      checkNumericInput(x, dimensions)
      sum(x^2)
    },
    par.set = makeNumericParamSet(
      len = dimensions,
      id = "x",
      lower = rep(-5.12, dimensions),
      upper = rep(5.12, dimensions),
      vector = TRUE
    ),
    tags = attr(makeSphereFunction, "tags"),
    global.opt.params = rep(0, dimensions),
    global.opt.value = 0
  )
}

class(makeSphereFunction) = c("function", "smoof_generator")
attr(makeSphereFunction, "name") = c("Sphere")
attr(makeSphereFunction, "type") = c("single-objective")
attr(makeSphereFunction, "tags") = c("single-objective", "unimodal", "separable", "convex", "continuous", "differentiable", "scalable")
jakobbossek/smoof documentation built on Feb. 17, 2024, 2:23 a.m.