Changeset 12 for src/main/java/weka/clusterers/forMetisMQI/graph
- Timestamp:
- Sep 16, 2010, 7:01:57 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/weka/clusterers/forMetisMQI/graph/Bisection.java
r11 r12 137 137 return out; 138 138 } 139 140 /** 141 * Returns the smaller subgraph of this bisection. 142 * @return 143 */ 144 public Subgraph getSmallerSubgraph() { 145 if(a.getVertexCount() < b.getVertexCount()) 146 return a; 147 else 148 return b; 149 } 139 150 }
Note: See TracChangeset
for help on using the changeset viewer.