Skip to content

Commit

Permalink
Update deprecated.jl
Browse files Browse the repository at this point in the history
Some rules can be bent. JuliaLang#9803

Others can be broken. JuliaLang#9779
  • Loading branch information
matrixmorpheus committed Jan 17, 2015
1 parent 4b20e10 commit dda4aa5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions base/deprecated.jl
Original file line number Diff line number Diff line change
Expand Up @@ -273,3 +273,12 @@ const base64 = base64encode

@deprecate error(ex::Exception) throw(ex)
@deprecate error{E<:Exception}(::Type{E}) throw(E())

@deprecate CholmodSparse!(colpt, rowval, nzval, m) CholmodSparse(colpt, rowval, nzval, m)
@ddprecate lufact!(S::SparseMatrixCSC) lufact(S)

@deprecate Triangular TriangularUnion
@deprecate Triangular{T,S,:U,true} UnitUpperTriangular

This comment has been minimized.

Copy link
@jiahao

jiahao Jan 17, 2015

UnitUpperTriangular (and ~Lower) is not exported, so this should be Base.LinAlg.UnitUpperTriangular

@deprecate Triangular{T,S,:L,true} UnitLowerTriangular
@deprecate Triangular{T,S,:U,false} UpperTriangular
@deprecate Triangular{T,S,:L,false} LowerTriangular

0 comments on commit dda4aa5

Please sign in to comment.