Skip to content

Commit

Permalink
(fix) small mf6core style issues (MODFLOW-USGS#949)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hofer-Julian committed Jul 14, 2022
1 parent 2530437 commit f9f51e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mf6core.f90
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ subroutine Mf6Run
call Mf6Initialize()
!
! -- time loop
tsloop: do while (totim < totalsimtime)
do while (totim < totalsimtime)

! perform a time step
hasConverged = Mf6Update()

! if not converged, break
if(.not. hasConverged) exit tsloop
if (.not. hasConverged) exit

enddo tsloop
end do
!
! -- finalize simulation
call Mf6Finalize()
Expand Down

0 comments on commit f9f51e2

Please sign in to comment.