<p><b>dwj07@fsu.edu</b> 2013-02-27 14:40:19 -0700 (Wed, 27 Feb 2013)</p><p><br>
        -- BRANCH COMMIT --<br>
<br>
        Casting weights as integers.<br>
</p><hr noshade><pre><font color="gray">Modified: branches/tools/python_scripts/processor_decompositions/make_partition_files.py
===================================================================
--- branches/tools/python_scripts/processor_decompositions/make_partition_files.py        2013-02-27 16:16:49 UTC (rev 2512)
+++ branches/tools/python_scripts/processor_decompositions/make_partition_files.py        2013-02-27 21:40:19 UTC (rev 2513)
@@ -82,7 +82,7 @@
 
 for i in np.arange(0, nCells):
         if weighted_parts:
-                wgraph.write('%s '%weights[i])
+                wgraph.write('%s '%int(weights[i]))
 
         for j in np.arange(0,nEdgesOnCell[i]):
                 if weighted_parts:

</font>
</pre>