We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d26c3a commit a87c465Copy full SHA for a87c465
src/common/m_helper_basic.fpp
@@ -143,7 +143,7 @@ contains
143
buff_size = max(buff_size, 6)
144
end if
145
146
- if(ib) then
+ if (ib) then
147
148
149
src/simulation/m_ibm.fpp
@@ -404,8 +404,8 @@ contains
404
do while ((temp_loc < s_cc(index) &
405
.or. temp_loc > s_cc(index + 1)))
406
index = index + dir
407
- if(index < -buff_size .or. index > bound) then
408
- EXIT
+ if (index < -buff_size .or. index > bound) then
+ exit
409
410
end do
411
ghost_points_in(q)%ip_grid(dim) = index
0 commit comments