Mercurial > repos > public > sbplib_julia
comparison src/Diffinitive.jl @ 1854:654a2b7e6824 tooling/benchmarks
Merge default
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Sat, 11 Jan 2025 10:19:47 +0100 |
parents | bddcae938ded |
children | 516eaabf1169 |
comparison
equal
deleted
inserted
replaced
1378:2b5480e2d4bf | 1854:654a2b7e6824 |
---|---|
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 |