Last change
on this file since 6 was
6,
checked in by gnappo, 14 years ago
|
Inizio prototipazione di Metis+MQI.
|
File size:
468 bytes
|
Line | |
---|
1 | package weka.clusterers.forMetisMQI; |
---|
2 | |
---|
3 | import java.util.List; |
---|
4 | |
---|
5 | public class CoarserGraphElement { |
---|
6 | |
---|
7 | private Graph g; |
---|
8 | private List<Integer> match; |
---|
9 | private List<Integer> map; |
---|
10 | |
---|
11 | public CoarserGraphElement(Graph g, List<Integer> match, List<Integer> map) { |
---|
12 | this.g = g; |
---|
13 | this.match = match; |
---|
14 | this.map = map; |
---|
15 | } |
---|
16 | |
---|
17 | public List<Integer> getMatch() { |
---|
18 | return match; |
---|
19 | } |
---|
20 | |
---|
21 | public List<Integer> getMap() { |
---|
22 | return map; |
---|
23 | } |
---|
24 | |
---|
25 | public Graph getGraph() { |
---|
26 | return g; |
---|
27 | } |
---|
28 | |
---|
29 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.