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

Corretti alcuni bachi inseriti con la migrazione a Jung.

File:
1 edited

Legend:

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

    r9 r10  
    88        /** The weight of the node */
    99        private int vwgt;
    10         /** The size of the adjacency list of the node */
    11         private int nedges;
    12         /**
    13          * The index into the adjacency list that is the beginning of the adjacency
    14          * list of v
    15          */
    16         private int iedges;
    1710        /** The weight of the edges that have been contracted to create the node */
    1811        private int cewgt;
    19         /** The sum of the weight of the edges adjacent to v */
    20         private int adjwgt;
    21 
    2212        public Node(String id) {
    2313                this.id = id;
    2414                this.vwgt = 1;
    2515                this.cewgt = 0;
    26                 this.iedges = 0;
    27                 this.nedges = 0;
    28                 this.adjwgt = 0;
    2916        }
    3017
     
    4734        @Override
    4835        public String toString() {
    49                 return "N" + id;
     36                return "N" + id; //+ " Cewgt: " + cewgt;
    5037        }
    5138
     
    5845        }
    5946
    60         public int getNedges() {
    61                 return nedges;
    62         }
    63 
    64         public void setNedges(int nedges) {
    65                 this.nedges = nedges;
    66         }
    67 
    68         public int getIedges() {
    69                 return iedges;
    70         }
    71 
    72         public void setIedges(int iedges) {
    73                 this.iedges = iedges;
    74         }
    75 
    7647        public int getCewgt() {
    7748                return cewgt;
     
    8253        }
    8354
    84         public int getAdjwgt() {
    85                 return adjwgt;
    86         }
    87 
    88         public void setAdjwgt(int adjwgt) {
    89                 this.adjwgt = adjwgt;
    90         }
    91        
    9255        @Override
    9356        public Node clone() {
    9457                Node n = new Node(id);
    95                 n.adjwgt = adjwgt;
    9658                n.cewgt = cewgt;
    97                 n.iedges = iedges;
    98                 n.nedges = nedges;
    9959                n.vwgt = vwgt;
    10060                return n;
Note: See TracChangeset for help on using the changeset viewer.