Influence Diagrams Solvers #33
-
Hi all, I am interested in using the In the documentation for this (https://gamma-opt.github.io/DecisionProgramming.jl/dev/examples/used-car-buyer/) all of the examples using
I was wondering if it was possible to use other solvers for these problems? Kind Regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @DomDF. Yes, of course. In principle, you can use any mixed-integer programming solver compatible with JuMP.jl. Basically, any supporting MILP from this list would work. Personally, I recommend HiGHS.jl. It is a great open-source solver that has remarkable performance. Then all you need to do is using HiGHS
using JuMP
model = Model(HiGH.Optimizer())
z = DecisionVariables(model, diagram)
x_s = PathCompatibilityVariables(model, diagram, z)
EV = expected_value(model, diagram, x_s)
@objective(model, Max, EV)
optimize!(model) P.S>: Apologies for the delay. I noticed my notifications from Github were off. We should be more responsive now! |
Beta Was this translation helpful? Give feedback.
Hi @DomDF. Yes, of course. In principle, you can use any mixed-integer programming solver compatible with JuMP.jl. Basically, any supporting MILP from this list would work.
Personally, I recommend HiGHS.jl. It is a great open-source solver that has remarkable performance. Then all you need to do is
P.S>: Apologies for the delay. I noticed my notifications from Github were off. We should be more responsive now!