I have a monte carlo simulation that runs in an external program that I can call using julia. I would like to optiize the simulation result with respect to parameters in the simulation input.
The values I get out of it, of course have a certain error, so there might not be a disctinct maximum at the current resolution and running the code twice will not give you the same result. However the error is within the 1% range.
Depending on the resulution the simulation can take several seconds to run.
What would be a good way to tackle this challenge? Are there any julia packages that can help me?
Thanks for the tip . We will focus on 4 parameters, two of which should allready be pretty optimal. No unfortunately it is impossible to get the gradient, as the code is written in C++.
Thanks a lot, basian optimization seems to be what I am looking for!