Skip to content

Commit

Permalink
call base method
Browse files Browse the repository at this point in the history
  • Loading branch information
mjr-deltares committed Jul 14, 2023
1 parent 5d6ab14 commit a001a94
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Solution/ParallelSolution.f90
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,8 @@ function par_nur_has_converged(this, dxold_max, hncg, dpak) &
has_converged = .false.

icnvg_local = 0
if (abs(dxold_max) <= this%dvclose .and. &
abs(hncg) <= this%dvclose .and. &
abs(dpak) <= this%dvclose) then
if (this%NumericalSolutionType%sln_nur_has_converged( &
dxold_max, hncg, dpak)) then
icnvg_local = 1
end if

Expand Down

0 comments on commit a001a94

Please sign in to comment.