Mercurial > repos > public > sbplib_julia
changeset 790:db1af48a5653 operator_storage_array_of_table
Fix incorrect argument order in docs
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Thu, 22 Jul 2021 10:13:33 +0200 |
parents | 5b6628a288a7 |
children | 7669c1e3a9a4 |
files | src/SbpOperators/volumeops/inner_products/inverse_inner_product.jl |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/SbpOperators/volumeops/inner_products/inverse_inner_product.jl Mon Jul 19 22:27:52 2021 +0200 +++ b/src/SbpOperators/volumeops/inner_products/inverse_inner_product.jl Thu Jul 22 10:13:33 2021 +0200 @@ -1,11 +1,11 @@ """ - inverse_inner_product(grid::EquidistantGrid, inv_inner_stencil, inv_closure_stencils) + inverse_inner_product(grid::EquidistantGrid, inv_closure_stencils, inv_inner_stencil) Creates the inverse inner product operator `H⁻¹` as a `TensorMapping` on an equidistant grid. `H⁻¹` is defined implicitly by `H⁻¹∘H = I`, where `H` is the corresponding inner product operator and `I` is the `IdentityMapping`. -`inverse_inner_product(grid::EquidistantGrid, inv_inner_stencil, inv_closure_stencils)` +`inverse_inner_product(grid::EquidistantGrid, inv_closure_stencils, inv_inner_stencil)` constructs `H⁻¹` using a set of stencils `inv_closure_stencils` for the points in the closure regions and the stencil `inv_inner_stencil` in the interior.