Changeset 24 for src/main/java/weka/clusterers/forMetisMQI/MQI.java
- Timestamp:
- Oct 6, 2010, 4:02:40 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/weka/clusterers/forMetisMQI/MQI.java
r22 r24 19 19 import edu.uci.ics.jung.graph.DirectedGraph; 20 20 import edu.uci.ics.jung.graph.DirectedSparseGraph; 21 import weka.clusterers.forMetisMQI.util.Configuration; 22 import weka.clusterers.forMetisMQI.util.GraphsFrame; 21 23 import weka.clusterers.forMetisMQI.util.Util; 22 24 … … 199 201 } 200 202 alg.evaluate(); 201 // Util.viewFlowGraph(directedGraph, edgeFlowMap); 203 if(Configuration.instance().getVerboseLevel() > 1) 204 GraphsFrame.instance().addPanel(Util.panelFlowGraph(directedGraph, edgeFlowMap)); 202 205 System.out.println("MAX FLOW: " + alg.getMaxFlow() + " THRESHOLD: " 203 206 + maxFlowThreshold); … … 210 213 bisection.getGraph(), cluster)); 211 214 // System.out.println("REFINED BISECTION: " + bisection.toString()); 215 if(Configuration.instance().getVerboseLevel() > 1) 216 GraphsFrame.instance().addPanel(Util.panelCluster(bisection.getGraph(), cluster)); 212 217 } else 213 218 finished = true;
Note: See TracChangeset
for help on using the changeset viewer.