We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d50e35a commit c411839Copy full SHA for c411839
src/generics.jl
@@ -2,9 +2,6 @@
2
3
## Basic functions
4
5
-Base.eltype(a::AbstractPDMat{T}) where {T<:Real} = T
6
-Base.eltype(::Type{AbstractPDMat{T}}) where {T<:Real} = T
7
-Base.ndims(a::AbstractPDMat) = 2
8
Base.size(a::AbstractPDMat) = (dim(a), dim(a))
9
Base.size(a::AbstractPDMat, i::Integer) = 1 <= i <= 2 ? dim(a) : 1
10
Base.length(a::AbstractPDMat) = abs2(dim(a))
0 commit comments