<p><b>dwj07@fsu.edu</b> 2010-07-20 11:38:59 -0600 (Tue, 20 Jul 2010)</p><p><br>
        local_cell_list bug fix.<br>
<br>
        On a single processor local_cell_list was holding a copy of the local processor number repeated throughout all of it's entries. It's supposed to be a list of the cells a given processor owns, so now it is updated to tell the processor it owns all of the cells.<br>
</p><hr noshade><pre><font color="gray">Modified: trunk/mpas/src/framework/module_block_decomp.F
===================================================================
--- trunk/mpas/src/framework/module_block_decomp.F        2010-07-20 00:24:29 UTC (rev 384)
+++ trunk/mpas/src/framework/module_block_decomp.F        2010-07-20 17:38:59 UTC (rev 385)
@@ -109,7 +109,9 @@
          deallocate(global_cell_list)
       else
          allocate(local_cell_list(partial_global_graph_info % nVerticesTotal))
-         local_cell_list(:) = dminfo % my_proc_id
+         do i=1,size(local_cell_list)
+            local_cell_list(i) = i
+         end do
       endif
 
    end subroutine block_decomp_cells_for_proc

</font>
</pre>