Skip to content

Commit

Permalink
Fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
timhutton committed Jan 21, 2021
1 parent 999f603 commit 1bfcde3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/readybase/stencils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ Stencil GetLaplacianStencil(int dimensionality, const AbstractRD::Accuracy& accu
}
case 3:
// Patra, M. & Karttunen, M. (2006) "Stencils with isotropic discretization error for differential operators" Numerical Methods for Partial Differential Equations, 22.
return StencilFrom3DArray<3,3>("laplacian", RotationallySymmetric3x3x3(1, 3, 14, -128), 30, 2, 0, 1, 2); // 27-point stencil
return StencilFrom3DArray<3,3,3>("laplacian", RotationallySymmetric3x3x3(1, 3, 14, -128), 30, 2, 0, 1, 2); // 27-point stencil
default:
throw runtime_error("Internal error: unsupported dimensionality in GetLaplacianStencil");
}
Expand Down

0 comments on commit 1bfcde3

Please sign in to comment.