Skip to content

Commit

Permalink
Merge pull request #33 from yuyichao/sparse-arrays
Browse files Browse the repository at this point in the history
Fix depwarn of SparseMatrix on 0.5-dev
  • Loading branch information
simonster committed Oct 24, 2015
2 parents 4b922b2 + 7dbf75b commit debf558
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
julia 0.3
ArrayViews 0.4.8-
Compat
Compat 0.7.7
2 changes: 1 addition & 1 deletion src/chol.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if VERSION >= v"0.4.0-dev+4370"
typealias CholType Cholesky{Float64, Matrix{Float64}}
chol_lower(a::Matrix{Float64}) = chol(a, Val{:L})

typealias CholTypeSparse Base.SparseMatrix.CHOLMOD.Factor{Float64}
typealias CholTypeSparse SparseArrays.CHOLMOD.Factor{Float64}

chol_lower(cf::CholTypeSparse) = cf[:L]
else
Expand Down

0 comments on commit debf558

Please sign in to comment.