Skip to content

Commit

Permalink
Amended method fill_corners_dgrid_defn to use x_out = x_out instead o…
Browse files Browse the repository at this point in the history
…f x_out = x_in
  • Loading branch information
fmalatino committed Sep 5, 2024
1 parent 99f1e43 commit e3cca7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ndsl/stencils/corners.py
Original file line number Diff line number Diff line change
Expand Up @@ -1003,7 +1003,7 @@ def fill_corners_dgrid_defn(
with computation(PARALLEL), interval(...):
# this line of code is used to fix the missing symbol crash due to the node visitor depth limitation
acoef = mysign
x_out = x_in
x_out = x_out
# sw corner
with horizontal(region[i_start - 1, j_start - 1]):
x_out = mysign * y_in[0, 1, 0]
Expand Down

0 comments on commit e3cca7c

Please sign in to comment.