Removed prev pointer from Particle.

This commit is contained in:
Paul Romano 2012-01-26 10:40:12 -05:00
parent 3aa700a9e1
commit 778920944b

View file

@ -23,9 +23,8 @@ module particle_header
real(8) :: xyz(3)
real(8) :: uvw(3)
! Pointers to next (lower) and previous (higher) universe
! Pointer to next (more local) set of coordinates
type(LocalCoord), pointer :: next => null()
type(LocalCoord), pointer :: prev => null()
end type LocalCoord
!===============================================================================