Mercurial > repos > public > sbplib_julia
diff src/Diffinitive.jl @ 1863:516eaabf1169 refactor/grids/iterable_boundary_indices
Merge default
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 22 Jan 2025 09:00:40 +0100 |
parents | 871f3f1decea bddcae938ded |
children |
line wrap: on
line diff
--- a/src/Diffinitive.jl Fri Jan 10 19:53:10 2025 +0100 +++ b/src/Diffinitive.jl Wed Jan 22 09:00:40 2025 +0100 @@ -10,4 +10,13 @@ export Grids export SbpOperators + +# Aqua.jl fixes +using StaticArrays +using .LazyTensors +Base.:+(a::StaticArray, b::LazyArray) = a +̃ b +Base.:+(a::LazyArray, b::StaticArray) = a +̃ b +Base.:-(a::StaticArray, b::LazyArray) = a -̃ b +Base.:-(a::LazyArray, b::StaticArray) = a -̃ b + end