comparison src/Diffinitive.jl @ 2057:8a2a0d678d6f feature/lazy_tensors/pretty_printing

Merge default
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 10 Feb 2026 22:41:19 +0100
parents 516eaabf1169
children
comparison
equal deleted inserted replaced
1110:c0bff9f6e0fb 2057:8a2a0d678d6f
1 module Diffinitive
2
3 include("RegionIndices/RegionIndices.jl")
4 include("LazyTensors/LazyTensors.jl")
5 include("Grids/Grids.jl")
6 include("SbpOperators/SbpOperators.jl")
7
8 export RegionIndices
9 export LazyTensors
10 export Grids
11 export SbpOperators
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
22 end