Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(NumericalSolution): remove unused advanceSolution method #470

Merged
merged 1 commit into from
Jun 4, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 0 additions & 24 deletions src/Solution/NumericalSolution.f90
Original file line number Diff line number Diff line change
Expand Up @@ -1220,31 +1220,7 @@ subroutine sln_ca(this, isgcnvg, isuppress_output)
return

end subroutine sln_ca


! advances the exchanges and models in this solution by 1 timestep
subroutine advanceSolution(this)
class(NumericalSolutionType) :: this
! local
class(NumericalExchangeType), pointer :: cp
class(NumericalModelType), pointer :: mp
integer(I4B) :: ic
integer(I4B) :: im

! -- Exchange advance
do ic=1,this%exchangelist%Count()
cp => GetNumericalExchangeFromList(this%exchangelist, ic)
call cp%exg_ad()
enddo

! -- Model advance
do im = 1, this%modellist%Count()
mp => GetNumericalModelFromList(this%modellist, im)
call mp%model_ad()
enddo

end subroutine advanceSolution

! write the header for the solver output to the CSV files
subroutine writeCSVHeader(this)
class(NumericalSolutionType) :: this
Expand Down