Learn R Programming

smoof (version 1.5)

makeBBOBFunction: Generator for the noiseless function set of the real-parameter Black-Box Optimization Benchmarking (BBOB).

Description

Generator for the noiseless function set of the real-parameter Black-Box Optimization Benchmarking (BBOB).

Usage

makeBBOBFunction(dimension, fid, iid)

Arguments

dimension

[integer(1)] Problem dimension. Integer value between 2 and 40.

fid

[integer(1)] Function identifier. Integer value between 1 and 24.

iid

[integer(1)] Instance identifier. Integer value greater than or equal 1.

Value

[smoof_single_objective_function]

References

See the BBOB website for a detailed description of the BBOB functions.

Examples

Run this code
# NOT RUN {
# get the first instance of the 2D Sphere function
fn = makeBBOBFunction(dimension = 2L, fid = 1L, iid = 1L)
if (require(plot3D)) {
  plot3D(fn, contour = TRUE)
}
# }

Run the code above in your browser using DataLab