Skip to content
Snippets Groups Projects
Commit e0e3b0ff authored by Lionel GUEZ's avatar Lionel GUEZ
Browse files

Rename local variable k2 to d

Following commit 4792f83f.
parent 70dc6b03
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,7 @@ contains ...@@ -35,7 +35,7 @@ contains
! Local: ! Local:
integer ishape, ishape_first integer ishape, ishape_first
integer k2 ! date index integer d ! date index
integer i ! eddy index integer i ! eddy index
type(eddy) e type(eddy) e
...@@ -52,10 +52,10 @@ contains ...@@ -52,10 +52,10 @@ contains
allocate(s%list_vis(s%number_vis_extr)) allocate(s%list_vis(s%number_vis_extr))
do ishape = ishape_first, ishape_last(k - d_init + 1) do ishape = ishape_first, ishape_last(k - d_init + 1)
call read_eddy(e, k2, i, hshp, ishape) call read_eddy(e, d, i, hshp, ishape)
! Check that all the eddies have the same date index: ! Check that all the eddies have the same date index:
call assert(k2 == k, "read_snapshot: date index") call assert(d == k, "read_snapshot: date index")
s%list_vis(i) = e s%list_vis(i) = e
end do end do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment