Ignore:
Timestamp:
Sep 29, 2010, 9:13:19 AM (14 years ago)
Author:
gnappo
Message:

Implementato raffinamento KL in metis; implementata ottimizzazione di mqi sulla conduttanza.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/weka/clusterers/forMetisMQI/graph/Bisection.java

    r15 r18  
    122122        }
    123123       
    124         public Bisection copy(){
     124        public Bisection clone(){
    125125                Bisection clone = new Bisection();
    126126                clone.a = (Subgraph) a.clone();
    127127                clone.b = (Subgraph) b.clone();
     128                clone.g = g.clone();
    128129                clone.marked = new HashSet<Node>();
    129130                return clone;
Note: See TracChangeset for help on using the changeset viewer.