Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: New MOIWrapper #250

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion Project.toml
@@ -1,17 +1,19 @@
name = "CPLEX"
uuid = "a076750e-1247-5638-91d2-ce28b192dca0"
repo = "https://github.com/JuliaOpt/CPLEX.jl"
version = "0.5.0"
version = "0.6.0"

[deps]
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
LinQuadOptInterface = "f8899e07-120b-5979-ab1d-7b97bb9e1a48"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
MathProgBase = "fdba3010-5040-5b88-9595-932c9decdf73"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"

[compat]
LinQuadOptInterface = "~0.6.0"
MathOptInterface = "^0.9"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use v0.9.1 as v0.9.0 does not work on Julia v1.2

MathProgBase = "~0.5.0, ~0.6, ~0.7"
julia = "1"

Expand Down
2 changes: 1 addition & 1 deletion src/CPLEX.jl
Expand Up @@ -109,5 +109,5 @@ module CPLEX
include("cpx_generic_callbacks.jl")

include("CplexSolverInterface.jl")
include("MOI_wrapper.jl")
include("MOIWrapper.jl")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It should be MOI_wrapper, not MOIWrapper

end