From dda4aa5b1f38780d33accde0e25093fa53a39c60 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 659c6924868eb2..7f19ddc8b64f51 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) +@ddprecate lufact!(S::SparseMatrixCSC) lufact(S) + +@deprecate Triangular TriangularUnion +@deprecate Triangular{T,S,:U,true} UnitUpperTriangular +@deprecate Triangular{T,S,:L,true} UnitLowerTriangular +@deprecate Triangular{T,S,:U,false} UpperTriangular +@deprecate Triangular{T,S,:L,false} LowerTriangular