makeBBOBFunction {smoof} | R Documentation |
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(dimensions, fid, iid)
Arguments
dimensions |
[ |
fid |
[ |
iid |
[ |
Value
[smoof_single_objective_function
]
Note
It is possible to pass a matrix of parameters to the functions, where each column consists of one parameter setting.
References
See the BBOB website for a detailed description of the BBOB functions.
Examples
# get the first instance of the 2D Sphere function
fn = makeBBOBFunction(dimensions = 2L, fid = 1L, iid = 1L)
if (require(plot3D)) {
plot3D(fn, contour = TRUE)
}
[Package smoof version 1.6.0.3 Index]