fixed a lot of tests

This commit is contained in:
Jukka Aho
2016-06-19 20:01:37 +03:00
parent d3fd87b26f
commit c02d510673
21 changed files with 789 additions and 694 deletions
+4
View File
@@ -155,6 +155,10 @@ function get_nonzero_rows(A::SparseMatrixCOO)
return get_nonzero_rows(sparse(A))
end
function get_nonzero_rows(A::Matrix)
return get_nonzero_rows(sparse(A))
end
function size(A::SparseMatrixCOO)
return maximum(A.I), maximum(A.J)
end