From d698a040d645672e4b1a0436ad8c57ce75bf2245 Mon Sep 17 00:00:00 2001 From: Chris C Date: Thu, 29 Nov 2018 18:38:44 -0500 Subject: [PATCH] use Int instead of Int64 in sparse matrix type --- src/algorithm.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algorithm.jl b/src/algorithm.jl index ffeccf5..2e39c06 100644 --- a/src/algorithm.jl +++ b/src/algorithm.jl @@ -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}