fin_env Subroutine

public subroutine fin_env()

Finalize the environment, should be the very last call in the program, and includes the call of MPI_Finalize.

Arguments

None

Calls

proc~~fin_env~~CallsGraph proc~fin_env fin_env mpi_finalize mpi_finalize proc~fin_env->mpi_finalize

Called by

proc~~fin_env~~CalledByGraph proc~fin_env fin_env proc~tem_finalize tem_finalize proc~tem_finalize->proc~fin_env

Source Code

  subroutine fin_env()
    ! ---------------------------------------------------------------------------
    integer :: iError
    ! ---------------------------------------------------------------------------
    call MPI_Finalize(iError)
  end subroutine fin_env