kibaekkim / DSPopt.jl

Julia modeling interface to parallel decomposition solver DSP
MIT License
12 stars 2 forks source link

Issue with DSPopt methods #31

Open rachaelalfant opened 2 years ago

rachaelalfant commented 2 years ago

Hello,

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.

ExtensiveForm DW

Any help would be greatly appreciated.