File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,13 @@ Lazy = "50d2b5c4-7a5e-59d5-8109-a42b560f39c0"
1010LinearAlgebra = " 37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1111Setfield = " efcf1570-3423-57d1-acb7-fd33fddbac46"
1212SparseArrays = " 2f01184e-e22b-5df5-ae63-d93ebab69eaf"
13- StaticArrays = " 90137ffa-7385-5640-81b9-e52037218182 "
13+ StaticArraysCore = " 1e83bf80-4336-4d27-bf5d-d5a4f845583c "
1414Tricks = " 410a4b4d-49e4-4fbc-ab6d-cb71b17b3775"
1515
1616[compat ]
1717ArrayInterfaceCore = " 0.1"
1818DocStringExtensions = " 0.8, 0.9"
1919Lazy = " 0.15"
2020Setfield = " 0.8, 1"
21- StaticArrays = " 1"
2221Tricks = " 0.1.6"
2322julia = " 1.6"
Original file line number Diff line number Diff line change @@ -3,10 +3,9 @@ module SciMLOperators
33using DocStringExtensions
44
55using LinearAlgebra
6- import StaticArrays
76import SparseArrays
7+ import StaticArraysCore
88import ArrayInterfaceCore
9- import Base: ReshapedArray
109import Tricks: static_hasmethod
1110import Lazy: @forward
1211import Setfield: @set!
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ Base.axes(L::MatrixOperator) = axes(L.A)
6868Base. eachindex (L:: MatrixOperator ) = eachindex (L. A)
6969Base. IndexStyle (:: Type{<:MatrixOperator{T,AType}} ) where {T,AType} = Base. IndexStyle (AType)
7070Base. copyto! (L:: MatrixOperator , rhs) = (copyto! (L. A, rhs); L)
71- Base. copyto! (L:: MatrixOperator , rhs:: Base.Broadcast.Broadcasted{<:StaticArrays .StaticArrayStyle} ) = (copyto! (L. A, rhs); L)
71+ Base. copyto! (L:: MatrixOperator , rhs:: Base.Broadcast.Broadcasted{<:StaticArraysCore .StaticArrayStyle} ) = (copyto! (L. A, rhs); L)
7272Base. Broadcast. broadcastable (L:: MatrixOperator ) = L
7373Base. ndims (:: Type{<:MatrixOperator{T,AType}} ) where {T,AType} = ndims (AType)
7474ArrayInterfaceCore. issingular (L:: MatrixOperator ) = ArrayInterfaceCore. issingular (L. A)
You can’t perform that action at this time.
0 commit comments