Skip to content

Commit

Permalink
Use SuiteSparse and Arpack packages (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmbates authored and ararslan committed Jun 25, 2018
1 parent 2f7ba0c commit 9fe6b3c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions REQUIRE
@@ -1,2 +1,3 @@
julia 0.7.0-DEV.5190 # for cholesky function
Compat 0.61.0
Arpack
2 changes: 1 addition & 1 deletion src/PDMats.jl
Expand Up @@ -3,7 +3,7 @@ __precompile__()
module PDMats

using Compat
using IterativeEigensolvers, LinearAlgebra, SparseArrays, SuiteSparse
using LinearAlgebra, SparseArrays, SuiteSparse

import Base: +, *, \, /, ==, convert, inv, Matrix

Expand Down
1 change: 1 addition & 0 deletions src/pdsparsemat.jl
@@ -1,3 +1,4 @@
using Arpack
# Sparse positive definite matrix together with a Cholesky factorization object
struct PDSparseMat{T<:Real,S<:AbstractSparseMatrix} <: AbstractPDMat{T}
dim::Int
Expand Down
2 changes: 1 addition & 1 deletion test/pdmtypes.jl
@@ -1,5 +1,5 @@
# test pd matrix types
using LinearAlgebra, PDMats, SparseArrays
using LinearAlgebra, PDMats, SparseArrays, SuiteSparse
using Test

call_test_pdmat(p::AbstractPDMat,m::Matrix) = test_pdmat(p,m,cmat_eq=true,verbose=1)
Expand Down

0 comments on commit 9fe6b3c

Please sign in to comment.