Skip to content

Commit

Permalink
fixed bug/typo in initialization of convergence arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
mjr-deltares committed Sep 26, 2023
1 parent 4e0a8dc commit 42def28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Solution/ConvergenceSummary.f90
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ subroutine set_defaults(this)
this%itinner(i) = 0
do j = 1, this%convnmod
this%convdvmax(j, i) = DZERO
this%convlocdv = 0
this%convlocdv(j, i) = 0
this%convdrmax(j, i) = DZERO
this%convlocdr = 0
this%convlocdr(j, i) = 0
end do
end do

Expand Down

0 comments on commit 42def28

Please sign in to comment.