Skip to content

Commit

Permalink
linter checked.
Browse files Browse the repository at this point in the history
  • Loading branch information
kousuke-nakano committed Sep 13, 2023
1 parent 62ef5c5 commit f08b41a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/a_module_tests/test_upwinvp.f90
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ program test_upwinvp
integer, parameter :: nel = 3, indt = 4
real*8 :: psi(indt, nel, 2), ainv(nel), ainvn(nel), winv(nel, indt)
integer :: i, j, k
real*8, parameter :: eps = 1.0e-10 ! A small value for numerical comparison
real*8, parameter :: eps = 1.0e-10 ! A small value for numerical comparison

yes_ontarget = .true.

! Initialize test data
winv = 0.0
do i = 1, indt
do j = 1, nel
do k = 1, 2
psi(i, j, k) = i * j * k
psi(i, j, k) = i*j*k
end do
end do
end do
Expand Down
8 changes: 4 additions & 4 deletions src/a_module_tests/test_upwinvp_complex.f90
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ program test_upwinvp_complex
integer, parameter :: nel = 3, indt = 4
complex*16 :: psi(indt, nel, 2), ainv(nel), ainvn(nel), winv(nel, indt), expected(nel, indt)
integer :: i, j, k
real*8, parameter :: eps = 1.0e-10 ! A small value for numerical comparison
real*8, parameter :: eps = 1.0e-10 ! A small value for numerical comparison

yes_ontarget = .true.

! Initialize test data
winv = cmplx(0.0, 0.0)
do i = 1, indt
do j = 1, nel
do k = 1, 2
psi(i, j, k) = cmplx(i * j * k, i * j * k)
psi(i, j, k) = cmplx(i*j*k, i*j*k)
end do
end do
end do
Expand Down

0 comments on commit f08b41a

Please sign in to comment.