<p><b>dwj07@fsu.edu</b> 2013-02-13 08:38:25 -0700 (Wed, 13 Feb 2013)</p><p><br>
        -- BRANCH COMMIT --<br>
<br>
        Fixing an issue with unweighted graph files.<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-13 15:07:24 UTC (rev 2469)
+++ branches/tools/python_scripts/processor_decompositions/make_partition_files.py        2013-02-13 15:38:25 UTC (rev 2470)
@@ -75,7 +75,9 @@
         wgraph.write('%s %s 010</font>
<font color="red">'%(nCells, nEdges))
 
 for i in np.arange(0, nCells):
-        wgraph.write('%s '%weights[i])
+        if weighted_parts:
+                wgraph.write('%s '%weights[i])
+
         for j in np.arange(0,nEdgesOnCell[i]):
                 if weighted_parts:
                         if(cellsOnCell[i][j] &gt;= 0):

</font>
</pre>