Mercurial > repos > public > sbplib_julia
view src/Diffinitive.jl @ 1998:6dd00ea0511a feature/grids/manifolds
Add check if the logical coordinates are in the parameter space when calling a chart
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 25 Apr 2025 08:28:34 +0200 |
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