Skip to content

Commit

Permalink
Default-initialize MCTWorld pointers.
Browse files Browse the repository at this point in the history
  • Loading branch information
quantheory committed Aug 25, 2014
1 parent 900b2f8 commit 7bdd316
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mct/m_MCTWorld.F90
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ module m_MCTWorld
integer :: ncomps ! Total number of components
integer :: mygrank ! Rank of this processor in
! global communicator.
integer,dimension(:),pointer :: nprocspid ! Number of processes
integer,dimension(:),pointer :: nprocspid => null() ! Number of processes
! each component is on (e.g. rank of its
! local communicator.
integer,dimension(:,:),pointer :: idGprocid ! Translate between local component rank
integer,dimension(:,:),pointer :: idGprocid => null() ! Translate between local component rank
! rank in global communicator.
! idGprocid(modelid,localrank)=globalrank
end type MCTWorld
Expand Down

0 comments on commit 7bdd316

Please sign in to comment.