From 778920944b5d76b78c70723c50e2f86a600a2881 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Thu, 26 Jan 2012 10:40:12 -0500 Subject: [PATCH] Removed prev pointer from Particle. --- src/particle_header.F90 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/particle_header.F90 b/src/particle_header.F90 index 8f81fbeb1f..290498b09d 100644 --- a/src/particle_header.F90 +++ b/src/particle_header.F90 @@ -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 !===============================================================================