Skip to content

Commit

Permalink
Remove useless/unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
blegat committed May 13, 2017
1 parent 3f119fb commit c65ad1c
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/solvers.jl
Expand Up @@ -880,7 +880,6 @@ end
function fill_bounds_constr!(I, J, V, b, con_cones, constr_to_row, c, d, m)
nonneg_rows = Int[]
nonpos_rows = Int[]
eq_rows = Int[]

for idx in 1:m.numCols
lb = m.colLower[idx]
Expand Down Expand Up @@ -913,9 +912,6 @@ function fill_bounds_constr!(I, J, V, b, con_cones, constr_to_row, c, d, m)
if !isempty(nonpos_rows)
push!(con_cones, (:NonPos,nonpos_rows))
end
if !isempty(eq_rows)
push!(con_cones, (:Zero,eq_rows))
end

c, d
end
Expand Down

0 comments on commit c65ad1c

Please sign in to comment.