JuliaOpt / GLPKMathProgInterface.jl

DEPRECATED: Interface between the GLPK.jl wrapper and MathProgBase.jl
Other
17 stars 14 forks source link

Replace MathProgBase with MathOptInterface #56

Closed OliverEvans96 closed 5 months ago

OliverEvans96 commented 5 years ago

MathProgBase has been deprecated in favor of MathOptInterface.

odow commented 5 years ago

See https://github.com/JuliaOpt/GLPKMathProgInterface.jl/pull/57

You can now use GLPK.Optimizer from https://github.com/JuliaOpt/GLPK.jl

using GLPK, JuMP
model = Model(with_optimizer(GLPK.Optimizer, presolve = true))
OliverEvans96 commented 5 years ago

Ah, okay! Do you know how I can specify the optimizer? E.g. MIP.

Thanks! Oliver

El lun., 25 de feb. de 2019, 12:55 p.m., Oscar Dowson < notifications@github.com> escribió:

See #57 https://github.com/JuliaOpt/GLPKMathProgInterface.jl/pull/57

You can now use GLPK.Optimizer from https://github.com/JuliaOpt/GLPK.jl

using GLPK, JuMP model = Model(with_optimizer(GLPK.Optimizer, presolve = true))

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/JuliaOpt/GLPKMathProgInterface.jl/issues/56#issuecomment-467111157, or mute the thread https://github.com/notifications/unsubscribe-auth/APLYI51gAcusD4dyhs4WN1QMB0J9t87mks5vRCN1gaJpZM4bQbAF .

OliverEvans96 commented 5 years ago

Sorry if the above question is answered elsewhere already - I wasn't sure where to find documentation for GLPK.Optimizer

El mié., 27 de feb. de 2019, 10:32 a.m., Oliver Evans < oliverevans96@gmail.com> escribió:

Ah, okay! Do you know how I can specify the optimizer? E.g. MIP.

Thanks! Oliver

El lun., 25 de feb. de 2019, 12:55 p.m., Oscar Dowson < notifications@github.com> escribió:

See #57 https://github.com/JuliaOpt/GLPKMathProgInterface.jl/pull/57

You can now use GLPK.Optimizer from https://github.com/JuliaOpt/GLPK.jl

using GLPK, JuMP model = Model(with_optimizer(GLPK.Optimizer, presolve = true))

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/JuliaOpt/GLPKMathProgInterface.jl/issues/56#issuecomment-467111157, or mute the thread https://github.com/notifications/unsubscribe-auth/APLYI51gAcusD4dyhs4WN1QMB0J9t87mks5vRCN1gaJpZM4bQbAF .

odow commented 5 years ago

You don't have to choose between the MIP/LP optimizer anymore. Please open an issue on GLPK.jl to add documentation for GLPK.Optimizer.

OliverEvans96 commented 5 years ago

Ah, thank you! https://github.com/JuliaOpt/GLPK.jl/issues/93