Changeset 18 for src/main/java/weka/clusterers/forMetisMQI/Uncoarse.java
- Timestamp:
- Sep 29, 2010, 9:13:19 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/weka/clusterers/forMetisMQI/Uncoarse.java
r14 r18 38 38 /** 39 39 * Given a bisection of the finer graph and the stack of graphs which yielded the finer graph, 40 * it returns the bisection projected into the coarser graph. 40 * it returns the bisection projected into the coarser graph. 41 41 * @param stack 42 42 * @param partition … … 47 47 CoarserGraphElement element = stack.pop(); 48 48 partition = uncoarseOneStep(partition,element); 49 partition = GraphAlgorithms.KLRefinement(partition); 49 50 } 50 51 return partition;
Note: See TracChangeset
for help on using the changeset viewer.