Ignore:
Timestamp:
Sep 16, 2010, 7:01:57 PM (14 years ago)
Author:
gnappo
Message:

Visualizzazione dei cluster. (da spostare)

File:
1 edited

Legend:

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

    r11 r12  
    137137                return out;
    138138        }
     139       
     140        /**
     141         * Returns the smaller subgraph of this bisection.
     142         * @return
     143         */
     144        public Subgraph getSmallerSubgraph() {
     145                if(a.getVertexCount() < b.getVertexCount())
     146                        return a;
     147                else
     148                        return b;
     149        }
    139150}
Note: See TracChangeset for help on using the changeset viewer.