Retrieves the details (bounds, dimension, and function object) for a specific benchmark test function.
get_function_details(function_name)A list containing:
Lower bounds for the function
Upper bounds for the function
Number of dimensions
The objective function
# Get details for the Sphere function (F01)
details <- get_function_details("F01")
str(details)
#> List of 4
#> $ lb : num -100
#> $ ub : num 100
#> $ dim : num 50
#> $ fobj:function (x)