Skip to content

Commit

Permalink
Small cosmetic change.
Browse files Browse the repository at this point in the history
  • Loading branch information
Niceno committed Oct 20, 2017
1 parent a72f6ad commit ef9b82e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Prec_Solve.f90
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ subroutine Prec_Solve(N, NB, A, D, x, b)
k = A % col(j)
sum1 = sum1 - A % val(j)*x(k)
end do
x(i) = sum1* D % val(D % dia(i)) ! BUG ?
x(i) = sum1 * D % val(D % dia(i)) ! BUG ?
end do

end subroutine Prec_Solve

0 comments on commit ef9b82e

Please sign in to comment.