From 32c4368481c3ac7a398ffa102e1538b43b08a457 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?mo=27=20=CF=95=2E=20us?= Date: Sat, 17 Jan 2015 13:52:19 -0500 Subject: [PATCH] Update deprecated.jl Some rules can be bent. #9803 Others can be broken. #9779 --- base/deprecated.jl | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/base/deprecated.jl b/base/deprecated.jl index 659c6924868eb..e072ddb583ac3 100644 --- a/base/deprecated.jl +++ b/base/deprecated.jl @@ -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) +@deprecate lufact!(S::SparseMatrixCSC) lufact(S) + +@deprecate Triangular TriangularUnion +@deprecate Triangular{T,S,:U,true} Base.LinAlg.UnitUpperTriangular +@deprecate Triangular{T,S,:L,true} Base.LinAlg.UnitLowerTriangular +@deprecate Triangular{T,S,:U,false} UpperTriangular +@deprecate Triangular{T,S,:L,false} LowerTriangular