Skip to content

Commit

Permalink
use Int instead of Int64 in sparse matrix type
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscoey committed Nov 29, 2018
1 parent 9eae7f7 commit d698a04
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 d698a04

Please sign in to comment.