Skip to content
Snippets Groups Projects
Unverified Commit 4b9600ca authored by Dorian Stoll's avatar Dorian Stoll
Browse files

nas-ft: fortran: Fix out of bounds initialization

parent e1134c37
No related branches found
No related tags found
No related merge requests found
......@@ -198,7 +198,7 @@
do k = 1, dims(3)
do j = 1, dims(2)
do i = 1, 2*nx
do i = 1, dims(1)+1
u0(i, j, k) = libc_drand48()
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