I am having an issue using different methods with DSPopt. I obtain the correct solution with the following code:
status = optimize!(model,
is_stochastic = false, # Needs to indicate that the model is NOT a stochastic program.
solve_type = DSPopt.ExtensiveForm, # see instances(DSPopt.Methods) for other methods
)
However, when I use solve_type = DSPopt.DW, I do not obtain the correct optimal solution.
Hello,
I am having an issue using different methods with DSPopt. I obtain the correct solution with the following code:
However, when I use
solve_type = DSPopt.DW
, I do not obtain the correct optimal solution.Any help would be greatly appreciated.