- Timestamp:
- Sep 29, 2010, 9:13:19 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/weka/clusterers/forMetisMQI/graph/Bisection.java
r15 r18 122 122 } 123 123 124 public Bisection c opy(){124 public Bisection clone(){ 125 125 Bisection clone = new Bisection(); 126 126 clone.a = (Subgraph) a.clone(); 127 127 clone.b = (Subgraph) b.clone(); 128 clone.g = g.clone(); 128 129 clone.marked = new HashSet<Node>(); 129 130 return clone;
Note: See TracChangeset
for help on using the changeset viewer.