Skip to content

Commit

Permalink
DiffEqArrayOperator copy
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Aug 16, 2021
1 parent 5bb630d commit 3d04ae7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SciMLBase"
uuid = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
authors = ["Chris Rackauckas <[email protected]> and contributors"]
version = "1.18.5"
version = "1.18.6"

[deps]
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
Expand Down
1 change: 1 addition & 0 deletions src/operators/basic_operators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ Base.copyto!(L::DiffEqArrayOperator, rhs::Base.Broadcast.Broadcasted{<:StaticArr
Base.Broadcast.broadcastable(L::DiffEqArrayOperator) = L
Base.ndims(::Type{<:DiffEqArrayOperator{T,AType}}) where {T,AType} = ndims(AType)
ArrayInterface.issingular(L::DiffEqArrayOperator) = ArrayInterface.issingular(L.A)
Base.copy(L::DiffEqArrayOperator) = DiffEqArrayOperator(copy(L.A);update_func=L.update_func)

"""
FactorizedDiffEqArrayOperator(F)
Expand Down

0 comments on commit 3d04ae7

Please sign in to comment.