Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
ajnonaka committed Dec 19, 2024
1 parent a9d9320 commit 2cd80d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ExampleCodes/FFT/Basic/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ int main (int argc, char* argv[])

Real x = prob_lo_x + (i+0.5) * dx[0];
Real y = prob_lo_y + (j+0.5) * dx[1];
#if (AMREX_SPACEDIM == 2)
#if (AMREX_SPACEDIM == 2)
phi_ptr(i,j,k) = std::exp(-10.*((x-cen_x)*(x-cen_x)+(y-cen_y)*(y-cen_y)));
#elif (AMREX_SPACEDIM == 3)
Real z = prob_lo_z + (k+0.5) * dx[2];
Expand Down

0 comments on commit 2cd80d5

Please sign in to comment.