Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix in the description in the 27 pt stencil and 9pt stencil examples #306

Merged
merged 11 commits into from
May 29, 2019
2 changes: 1 addition & 1 deletion examples/nine-pt-stencil-solver/doc/intro.dox
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ On any node, where neighbor is on the border, the neighbor is replaced with a
example a node with a neighborhood of only edge nodes may look like this

\sum_{a,b=-1}^(1,0) stencil(a,b) * u_{(i+a,j+b} = -f_k h^2 - \sum_{a=-1}^1
stencil(a,1) * * u_{(i+a,j+1}
stencil(a,1) * u_{(i+a,j+1}

which is then solved using Ginkgo's implementation of the CG method
preconditioned with block-Jacobi. It is also possible to specify on which
Expand Down
2 changes: 1 addition & 1 deletion examples/nine-pt-stencil-solver/nine-pt-stencil-solver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ On any node, where neighbor is on the border, the neighbor is replaced with a
example a node with a neighborhood of only edge nodes may look like this

\sum_{a,b=-1}^(1,0) stencil(a,b) * u_{(i+a,j+b} = -f_k h^2 - \sum_{a=-1}^1
stencil(a,1) * * u_{(i+a,j+1}
stencil(a,1) * u_{(i+a,j+1}

which is then solved using Ginkgo's implementation of the CG method
preconditioned with block-Jacobi. It is also possible to specify on which
Expand Down
2 changes: 1 addition & 1 deletion examples/twentyseven-pt-stencil-solver/doc/intro.dox
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ On any node, where neighbor is on the border, the neighbor is replaced with a
For example a node with a neighborhood of only face nodes may look like this

\sum_{a,b,c=-1}^(1,1,0) stencil(a,b,c) * u_{(i+a,j+b,k+c} = -f_k h^2 -
\sum_{a,b=-1}^(1,1) stencil(a,b,1) * * u_{(i+a,j+b,k+1}
\sum_{a,b=-1}^(1,1) stencil(a,b,1) * u_{(i+a,j+b,k+1}

which is then solved using Ginkgo's implementation of the CG method
preconditioned with block-Jacobi. It is also possible to specify on which
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ On any node, where neighbor is on the border, the neighbor is replaced with a
For example a node with a neighborhood of only face nodes may look like this

\sum_{a,b,c=-1}^(1,1,0) stencil(a,b,c) * u_{(i+a,j+b,k+c} = -f_k h^2 -
\sum_{a,b=-1}^(1,1) stencil(a,b,1) * * u_{(i+a,j+b,k+1}
\sum_{a,b=-1}^(1,1) stencil(a,b,1) * u_{(i+a,j+b,k+1}

which is then solved using Ginkgo's implementation of the CG method
preconditioned with block-Jacobi. It is also possible to specify on which
Expand Down