1
0
mirror of https://github.com/kalmarek/PropertyT.jl.git synced 2024-08-08 07:53:52 +02:00

constraints return linear indices

This commit is contained in:
kalmarek 2018-08-20 03:50:03 +02:00
parent 13bc1bef8b
commit 33fc456879

View File

@ -1,13 +1,14 @@
using JuMP
import MathProgBase: AbstractMathProgSolver
function constraints(pm, total_length=maximum(pm))
n = size(pm,1)
constraints = [Vector{Tuple{Int,Int}}() for _ in 1:total_length]
for j in 1:n
for i in 1:n
idx = pm[i,j]
push!(constraints[idx], (i,j))
function constraints(pm::Matrix{I}, total_length=maximum(pm)) where {I<:Integer}
cnstrs = [Vector{I}() for _ in 1:total_length]
for i in eachindex(pm)
push!(cnstrs[pm[i]], i)
end
return cnstrs
end
end
end
return constraints