You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 4, 2019. It is now read-only.
Currently, the tests passed on my machine. Just that it produces ambiguity warnings when loaded:
julia> using DataArrays
Warning: New definition
-(DataArray{T,N},AbstractArray{T,N}) at /Users/dhlin/.julia/DataArrays/src/operators.jl:324
is ambiguous with:
-(AbstractArray{T,2},Diagonal{T}) at linalg/diagonal.jl:27.
To fix, define
-(DataArray{T,2},Diagonal{T})
before the new definition.
Warning: New definition
-(AbstractArray{T,N},DataArray{T,N}) at /Users/dhlin/.julia/DataArrays/src/operators.jl:324
is ambiguous with:
-(Diagonal{T},AbstractArray{T,2}) at linalg/diagonal.jl:26.
To fix, define
-(Diagonal{T},DataArray{T,2})
before the new definition.
Warning: New definition
-(AbstractDataArray{T,N},AbstractArray{T,N}) at /Users/dhlin/.julia/DataArrays/src/operators.jl:345
is ambiguous with:
-(AbstractArray{T,2},Diagonal{T}) at linalg/diagonal.jl:27.
To fix, define
-(AbstractDataArray{T,2},Diagonal{T})
before the new definition.
Warning: New definition
-(AbstractArray{T,N},AbstractDataArray{T,N}) at /Users/dhlin/.julia/DataArrays/src/operators.jl:345
is ambiguous with:
-(Diagonal{T},AbstractArray{T,2}) at linalg/diagonal.jl:26.
To fix, define
-(Diagonal{T},AbstractDataArray{T,2})
before the new definition.
Currently, the tests passed on my machine. Just that it produces ambiguity warnings when loaded:
The problem is that the Base defines:
and this package defines:
So when you write something like a diagonal matrix subtract a data matrix, the compiler won't know which method to use.
The text was updated successfully, but these errors were encountered: