Mercurial > repos > public > sbplib_julia
diff src/SbpOperators/volumeops/laplace/laplace.jl @ 947:38d1752a9aff feature/laplace_opset
Reformat "See also:"
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Sun, 13 Mar 2022 21:01:09 +0100 |
parents | 22c80fb36400 |
children | 1484073dfe27 |
line wrap: on
line diff
--- a/src/SbpOperators/volumeops/laplace/laplace.jl Fri Feb 25 17:20:40 2022 +0100 +++ b/src/SbpOperators/volumeops/laplace/laplace.jl Sun Mar 13 21:01:09 2022 +0100 @@ -41,7 +41,9 @@ On a one-dimensional `grid`, `Δ` is equivalent to `second_derivative`. On a multi-dimensional `grid`, `Δ` is the sum of multi-dimensional `second_derivative`s -where the sum is carried out lazily. See also [`second_derivative`](@ref). +where the sum is carried out lazily. + +See also: [`second_derivative`](@ref). """ function laplace(grid::EquidistantGrid, inner_stencil, closure_stencils) Δ = second_derivative(grid, inner_stencil, closure_stencils, 1) @@ -49,4 +51,4 @@ Δ += second_derivative(grid, inner_stencil, closure_stencils, d) end return Δ -end \ No newline at end of file +end