Skip to content

Commit

Permalink
Fix order of trajectory segments for local PE
Browse files Browse the repository at this point in the history
- For either force_all_pes_traj or the local trajectory segments
  to the I/O PE, the segments were out of order.
  • Loading branch information
adcroft committed Jul 17, 2015
1 parent 314713b commit 255fb34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion icebergs_io.F90
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ subroutine write_trajectory(trajectory)
if(associated(trajectory)) then
this=>trajectory
do while (associated(this))
call push_posn(traj4io, this)
call append_posn(traj4io, this)
this=>this%next
enddo
trajectory => null()
Expand Down

0 comments on commit 255fb34

Please sign in to comment.