- Timestamp:
- Oct 13, 2010, 11:34:27 AM (14 years ago)
- Location:
- src/main/java/weka/clusterers/forMetisMQI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/weka/clusterers/forMetisMQI/MQI.java
r26 r28 165 165 boolean finished = false; 166 166 Bisection bisection = partition; 167 Set<Node> cluster = new HashSet<Node>(partition.get LargerSubgraph()167 Set<Node> cluster = new HashSet<Node>(partition.getSmallerSubgraph() 168 168 .createInducedSubgraph().getVertices()); 169 169 // System.out.println("IMPROVING SUBGRAPH: " + cluster); -
src/main/java/weka/clusterers/forMetisMQI/util/Random.java
r26 r28 15 15 public static Random instance() { 16 16 if(instance == null) { 17 instance = new Random( new java.util.Random().nextLong()/*1234567890*/);17 instance = new Random(/*new java.util.Random().nextLong()*/1234567890); 18 18 } 19 19 return instance;
Note: See TracChangeset
for help on using the changeset viewer.