Mercurial > repos > public > sbplib_julia
changeset 870:c4dd4ceb2d40 feature/laplace_opset
REVIEW: Remove extra newlines in docstrings
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 25 Jan 2022 08:05:02 +0100 |
parents | 4bd35ba8f34a |
children | 86776d06b883 |
files | src/SbpOperators/volumeops/laplace/laplace.jl |
diffstat | 1 files changed, 0 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/SbpOperators/volumeops/laplace/laplace.jl Tue Jan 25 07:21:58 2022 +0100 +++ b/src/SbpOperators/volumeops/laplace/laplace.jl Tue Jan 25 08:05:02 2022 +0100 @@ -29,7 +29,6 @@ Note that all properties of Laplace, excluding the differential operator `Laplace.D`, are abstract types. For performance reasons, they should therefore be accessed via the provided getter functions (e.g `inner_product(::Laplace)`). - """ struct Laplace{T, Dim, TMdiffop<:TensorMapping{T,Dim,Dim}} <: TensorMapping{T,Dim,Dim} D::TMdiffop # Differential operator @@ -83,7 +82,6 @@ inner_product(L::Laplace) Returns the inner product operator associated with `L` - """ inner_product(L::Laplace) = L.H export inner_product @@ -93,7 +91,6 @@ inverse_inner_product(L::Laplace) Returns the inverse of the inner product operator associated with `L` - """ inverse_inner_product(L::Laplace) = L.H_inv export inverse_inner_product @@ -106,7 +103,6 @@ Returns boundary restriction operator(s) associated with `L` for the boundary(s) identified by id(s). - """ boundary_restriction(L::Laplace, id::BoundaryIdentifier) = L.e[id] boundary_restriction(L::Laplace, ids::Tuple) = map(id-> L.e[id], ids) @@ -128,7 +124,6 @@ Returns normal derivative operator(s) associated with `L` for the boundary(s) identified by id(s). - """ normal_derivative(L::Laplace, id::BoundaryIdentifier) = L.d[id] normal_derivative(L::Laplace, ids::NTuple{N,BoundaryIdentifier}) where N = ntuple(i->L.d[ids[i]],N) @@ -143,7 +138,6 @@ Returns boundary quadrature operator(s) associated with `L` for the boundary(s) identified by id(s). - """ boundary_quadrature(L::Laplace, id::BoundaryIdentifier) = L.H_boundary[id] boundary_quadrature(L::Laplace, ids::NTuple{N,BoundaryIdentifier}) where N = ntuple(i->L.H_boundary[ids[i]],N)