view src/Diffinitive.jl @ 1869:20bd8887db0d feature/grids/manifolds

Fix Aqua and JET fails
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 24 Jan 2025 23:40:28 +0100
parents bddcae938ded
children 516eaabf1169
line wrap: on
line source

module Diffinitive

include("RegionIndices/RegionIndices.jl")
include("LazyTensors/LazyTensors.jl")
include("Grids/Grids.jl")
include("SbpOperators/SbpOperators.jl")

export RegionIndices
export LazyTensors
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