From: <mwl...@us...> - 2009-07-31 15:24:34
|
Revision: 909 http://cishell.svn.sourceforge.net/cishell/?rev=909&view=rev Author: mwlinnem Date: 2009-07-31 15:24:24 +0000 (Fri, 31 Jul 2009) Log Message: ----------- Removing 'id' attribute (this was causing some confusion, as there was already an auto-generated id on the Jung graph). Modified Paths: -------------- trunk/core/org.cishell.algorithm.convertergraph/src/org/cishell/algorithm/convertergraph/ConverterGraphComputation.java Modified: trunk/core/org.cishell.algorithm.convertergraph/src/org/cishell/algorithm/convertergraph/ConverterGraphComputation.java =================================================================== --- trunk/core/org.cishell.algorithm.convertergraph/src/org/cishell/algorithm/convertergraph/ConverterGraphComputation.java 2009-07-30 21:35:14 UTC (rev 908) +++ trunk/core/org.cishell.algorithm.convertergraph/src/org/cishell/algorithm/convertergraph/ConverterGraphComputation.java 2009-07-31 15:24:24 UTC (rev 909) @@ -134,8 +134,7 @@ nodeCount++; Vertex node = new DirectedSparseVertex(); - - node.addUserDatum("id", nodeCount, new UserDataContainer.CopyAction.Shared()); + node.addUserDatum("strength", 1, new UserDataContainer.CopyAction.Shared()); node.addUserDatum("label", nodeKey, new UserDataContainer.CopyAction.Shared()); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |