Mercurial > repos > public > sbplib_julia
view src/Diffinitive.jl @ 2043:0e93fc7fb2e2 bugfix/zero_dim_grid_boundary_ops
Add implementation of normal_derivative for ZeroDimGrid throwing and error
| author | Jonatan Werpers <jonatan@werpers.com> |
|---|---|
| date | Thu, 05 Feb 2026 22:23:19 +0100 |
| parents | 516eaabf1169 |
| children |
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
