I would like to run multiple optimizations of the same scenario, each with a different random seed. However, they should use the same seed throughout the optimization. I have tried to program this using the signature (using HasSignature), but this did not work. Is there any way to program this in a controller? Or does this already happen automatically if I do not prescribe a random seed?
So what I want is:
filename.R1 uses random_seed 1
filename.R2 uses random_seed 2
etc.
And I tried to following in my controller:
Code: Select all
if scone.HasSignature == 'pendulum.SC.SM.D20.R1.' then
perturb_seed = 1
elseif scone.HasSignature == 'pendulum.SC.SM.D20.R2' then
perturb_seed = 2
...
end
Thanks for your help!
Kind regards,
Anne