Skip to content

Commit

Permalink
julia1 syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jrising committed May 20, 2019
1 parent 2cf5601 commit de14052
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/linproghouse.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1344,8 +1344,8 @@ function matrixchunks(rowdims::Vector{Int64}, coldims::Vector{Int64}, gen::Funct
@assert size(subA)[2] == rightii - leftii + 1 "Got matrix of size $(size(subA)) for columns $leftii - $rightii"

iis, jjs, vvs = findnz(subA)
append!(alliis, iis + topii - 1)
append!(alljjs, jjs + leftii - 1)
append!(alliis, iis .+ (topii - 1))
append!(alljjs, jjs .+ (leftii - 1))
append!(allvvs, vvs)
#A[topii:bottomii, leftii:rightii] = gen(rowindex..., colindex...)
end
Expand Down

0 comments on commit de14052

Please sign in to comment.