Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions src/common/m_model.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -746,11 +746,9 @@ contains
do j = 1, boundary_edge_count
l1 = sqrt((boundary_v(j, 2, 1) - boundary_v(j, 1, 1))**2 + &
(boundary_v(j, 2, 2) - boundary_v(j, 1, 2))**2)

if ((l1 > cell_width)) then
if (l1 > cell_width) then
interpolate = .true.
else
interpolate = .false.
return
end if
end do

Expand Down Expand Up @@ -794,8 +792,7 @@ contains
(edge_l(2) > cell_width) .or. &
(edge_l(3) > cell_width)) then
interpolate = .true.
else
interpolate = .false.
return
end if
end do

Expand Down
Loading