- Timestamp:
- Sep 10, 2010, 10:51:27 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/weka/clusterers/forMetisMQI/CoarserGraphElement.java
r6 r7 5 5 public class CoarserGraphElement { 6 6 7 private Graph g; 7 private Graph contracted; 8 private Graph projected; 8 9 private List<Integer> match; 9 10 private List<Integer> map; 10 11 11 public CoarserGraphElement(Graph g, List<Integer> match, List<Integer> map) { 12 this.g = g; 12 public CoarserGraphElement(Graph contracted, Graph projected, List<Integer> match, List<Integer> map) { 13 this.contracted = contracted; 14 this.projected = projected; 13 15 this.match = match; 14 16 this.map = map; … … 23 25 } 24 26 25 public Graph getGraph() { 26 return g; 27 public Graph getContracted() { 28 return contracted; 29 } 30 31 public Graph getProjected() { 32 return projected; 27 33 } 28 34
Note: See TracChangeset
for help on using the changeset viewer.