NODAL.jl icon indicating copy to clipboard operation
NODAL.jl copied to clipboard

Several thousends arguments of the function as a vector

Open scepeda78 opened this issue 4 years ago • 1 comments

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")

scepeda78 avatar May 26 '21 17:05 scepeda78

You would have to build your dictionary using a for loop, with a FloatParameter for each of your 6000 parameters

phrb avatar May 26 '21 17:05 phrb