Mercurial > repos > public > sbplib_julia
view src/SbpOperators/SbpOperators.jl @ 690:1accc3e051d0 refactor/operator_naming
Start changing the name of functions creating operators that are not types to lower case. E.g SecondDerivative->second_derivative
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Fri, 12 Feb 2021 16:16:45 +0100 |
parents | f13d45c10f55 |
children | 40f2999f57b2 |
line wrap: on
line source
module SbpOperators using Sbplib.RegionIndices using Sbplib.LazyTensors using Sbplib.Grids include("stencil.jl") include("d2.jl") include("readoperator.jl") include("volumeops/volume_operator.jl") include("volumeops/derivatives/secondderivative.jl") include("volumeops/laplace/laplace.jl") include("volumeops/quadratures/quadrature.jl") include("volumeops/quadratures/inverse_quadrature.jl") include("boundaryops/boundary_operator.jl") include("boundaryops/boundary_restriction.jl") include("boundaryops/normal_derivative.jl") end # module