comparison 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
comparison
equal deleted inserted replaced
1845:aa7da5c899d8 1863:516eaabf1169
8 export RegionIndices 8 export RegionIndices
9 export LazyTensors 9 export LazyTensors
10 export Grids 10 export Grids
11 export SbpOperators 11 export SbpOperators
12 12
13
14 # Aqua.jl fixes
15 using StaticArrays
16 using .LazyTensors
17 Base.:+(a::StaticArray, b::LazyArray) = a +̃ b
18 Base.:+(a::LazyArray, b::StaticArray) = a +̃ b
19 Base.:-(a::StaticArray, b::LazyArray) = a -̃ b
20 Base.:-(a::LazyArray, b::StaticArray) = a -̃ b
21
13 end 22 end