Skip to content
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.

Commit

Permalink
1 char fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xtalax committed Apr 21, 2022
1 parent 5e24ee3 commit b9b7ec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/derivative_operators/derivative_operator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ function CompleteHalfCenteredDifference(derivative_order::Int,

R_boundary_deriv_spots = hx[length(hx):-1:length(hx)-div(centered_stencil_length, 2)+1]

stencil_coefs = [convert(SVector{centered_stencil_length,eltype(x)}, calculate_weights(derivative_order, hx[i], x[i-endpoint+1:i+endpoint])) for i in endpoint+1:length(hx)-endpoint]
stencil_coefs = [convert(SVector{centered_stencil_length,eltype(x)}, calculate_weights(derivative_order, hx[i], x[i-endpoint+1:i+endpoint])) for i in endpoint+1:length(x)-endpoint]
# For each boundary point, for each tappoint in the half offset central difference stencil, we need to calculate the coefficients for the stencil.


Expand Down

0 comments on commit b9b7ec9

Please sign in to comment.