NODAL.jl
NODAL.jl copied to clipboard
Several thousends arguments of the function as a vector
How it would be the input of the configuration item, if you have like 6000 input variables? Is there a simpler way to do it, without the Dict option.
configuration = Configuration([FloatParameter(-2.0, 2.0, 0.0, "i0"),
FloatParameter(-2.0, 2.0, 0.0, "i1")],
"rosenbrock_config")
You would have to build your dictionary using a for loop, with a FloatParameter for each of your 6000 parameters