Ignore:
Timestamp:
Sep 14, 2010, 2:11:28 PM (14 years ago)
Author:
gnappo
Message:

Migrato il resto del codice verso Jung.

File:
1 edited

Legend:

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

    r8 r9  
    5151        }
    5252
     53        public void setWeight(int weight) {
     54                this.weight = weight;
     55        }
     56
     57        public void setCapacity(int capacity) {
     58                this.capacity = capacity;
     59        }
     60       
     61        @Override
     62        public Edge clone(){
     63                Edge e = new Edge(id, weight, capacity);
     64                return e;
     65        }
     66
    5367}
Note: See TracChangeset for help on using the changeset viewer.