Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
[compat]
FillArrays = "1.15.0"
LinearAlgebra = "1.10"
MathOptInterface = "1.49"
MathOptInterface = "1.52"
SparseArrays = "1.10"
julia = "1.10"

Expand Down
1 change: 0 additions & 1 deletion src/MatrixOptInterface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ end

@enum VariableType CONTINUOUS INTEGER BINARY

include("product_of_sets.jl")
include("conic_form.jl")
include("matrix_input.jl")
#include("change_form.jl")
Expand Down
6 changes: 4 additions & 2 deletions src/conic_form.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,12 @@ function empty_geometric_conic_form(
Tv,
MOI.Utilities.MutableSparseMatrixCSC{Tv,Ti,I},
Vector{Tv},
ProductOfSets{Tv},
MOI.Utilities.RuntimeProductOfSets{Tv},
}(),
)
set_set_types(model.constraints.sets, cones)
for S in cones
MOI.Utilities.add_set_type(model.constraints.sets, S)
end
return model
end

Expand Down
75 changes: 0 additions & 75 deletions src/product_of_sets.jl

This file was deleted.

Loading