jmcastro2109
jmcastro2109
Yes, it does! Here is the code that is giving me the error ` # Trying Stochastic Programs using JuMP, LinearAlgebra, Random, Distributions, BenchmarkTools, MosekTools, NLopt using StochasticPrograms @sampler SimpleSampler...
Re-working the error code
Hi @tpapp thanks for the answer and sorry for the lack of clarity. It is difficult to provide a MWE, although hopefully the following code snippet can provide some clarity...
This code seems to generate the error: ``` using MultistartOptimization, NLopt Point = [0.0,0.1] function f(x,grad) if grad == [] val = x[1]^2 + x[2]^2 println("Param:",x) println("val:",val) end return val...
Yes, I figured that out. However, I expected to apply the local optimizer to the prepended_point rather than starting from a linear combination of the prepended_point and the best starting...