Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Got rid of troubleshooting write statement
  • Loading branch information
daminton committed May 11, 2021
1 parent 90206ba commit d39af97
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/symba/symba_frag_pos.f90
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,6 @@ function ge_wpp(a, b) result(u) ! gaussian eliminate with partial pivoting
n = size(a, 1)
allocate(u(n, (n + 1)))
u = reshape([a, b], [n, n + 1])
write(*,*) 'u = ',u
do j = 1, n
p = maxloc(abs(u(j:n, j)), 1) + j - 1 ! maxloc returns indices between (1, n - j + 1)
if (p /= j) u([p, j], j) = u([j, p], j)
Expand Down

0 comments on commit d39af97

Please sign in to comment.