Skip to content

Commit

Permalink
Merge pull request #12734 from KristofferC/kc/csparse_test
Browse files Browse the repository at this point in the history
Fix off by one in csc_premute and add test
  • Loading branch information
andreasnoack committed Aug 28, 2015
2 parents d23449d + 50c6201 commit 29d070a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
3 changes: 1 addition & 2 deletions base/sparse/csparse.jl
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ function csc_permute{Tv,Ti}(A::SparseMatrixCSC{Tv,Ti}, pinv::Vector{Ti}, q::Vect
end
if !isperm(pinv) || !isperm(q) error("both pinv and q must be permutations") end
C = copy(A); Cp = C.colptr; Ci = C.rowval; Cx = C.nzval
nz = zero(Ti)
nz = one(Ti)
for k in 1:n
Cp[k] = nz
j = q[k]
Expand Down Expand Up @@ -354,7 +354,6 @@ immutable TrilFun <: Func{4} end
call(::TrilFun, i,j,x,other) = i>=j - other

droptol!(A::SparseMatrixCSC, tol) = fkeep!(A, DropTolFun(), tol)
droptol(A::SparseMatrixCSC) = droptol!(copy(A))
dropzeros!(A::SparseMatrixCSC) = fkeep!(A, DropZerosFun(), nothing)
dropzeros(A::SparseMatrixCSC) = dropzeros!(copy(A))

Expand Down
12 changes: 6 additions & 6 deletions test/sparsedir/sparse.jl
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,6 @@ A = sparse(ones(5,5))
@test_throws DimensionMismatch one(sprand(5,6,0.2))

#istriu/istril

A = sparse(triu(rand(5,5)))
@test istriu(A)
@test !istriu(sparse(ones(5,5)))
Expand All @@ -918,29 +917,24 @@ A = sparse(tril(rand(5,5)))
@test !istril(sparse(ones(5,5)))

# symperm

srand(1234321)
A = triu(sprand(10,10,0.2)) # symperm operates on upper triangle
perm = randperm(10)
@test symperm(A,perm).colptr == [1,2,3,3,3,4,5,5,7,9,10]

# droptol

@test Base.droptol!(A,0.01).colptr == [1,1,1,2,2,3,4,6,6,7,9]

#trace

@test_throws DimensionMismatch trace(sparse(ones(5,6)))
@test trace(speye(5)) == 5

#diagm on a matrix

@test_throws DimensionMismatch diagm(sparse(ones(5,2)))
@test_throws DimensionMismatch diagm(sparse(ones(2,5)))
@test diagm(sparse(ones(1,5))) == speye(5)

# triu/tril

A = sprand(5,5,0.2)
AF = full(A)
@test full(triu(A,1)) == triu(AF,1)
Expand Down Expand Up @@ -1098,3 +1092,9 @@ Ari = ceil(Int64,100*Ar)

@test_throws ErrorException transpose(sub(sprandn(10, 10, 0.3), 1:4, 1:4))
@test_throws ErrorException ctranspose(sub(sprandn(10, 10, 0.3), 1:4, 1:4))

# csc_permute
A = sprand(10,10,0.2)
p = randperm(10)
q = randperm(10)
@test Base.SparseMatrix.csc_permute(A, invperm(p), q) == full(A)[p, q]

0 comments on commit 29d070a

Please sign in to comment.