Skip to content

Commit

Permalink
Merge pull request #15 from JuliaOpt/chriscoey-patch-1
Browse files Browse the repository at this point in the history
use Int instead of Int64 in sparse matrix type
  • Loading branch information
chriscoey committed Nov 30, 2018
2 parents 9eae7f7 + d698a04 commit ec32cbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/algorithm.jl
Expand Up @@ -19,7 +19,7 @@ mutable struct PavitoNonlinearModel <: MathProgBase.AbstractNonlinearModel
numvar::Int
numconstr::Int
numnlconstr::Int
A::SparseMatrixCSC{Float64,Int64}
A::SparseMatrixCSC{Float64,Int}
A_lb::Vector{Float64}
A_ub::Vector{Float64}
lb::Vector{Float64}
Expand Down

0 comments on commit ec32cbb

Please sign in to comment.