Ignore:
Timestamp:
Jan 6, 2011, 9:41:42 AM (14 years ago)
Author:
toshi
Message:

ultimo commit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/localSpectral/src/jung/Main.java

    r34 r36  
    33
    44import clustering.GraphClusterer;
     5import data.GraphBuilder;
     6import view.GraphToGraphviz;
    57
    68
     
    1012    public static void main(String[] args) {
    1113
    12         String path_simply_net = "/home/luke/Desktop/reteSemplice.txt";
    13         String path_mike_hiddent = "/home/luke/Desktop/reteUtentiMikeHidden.arff";
    14         String karate_club = "/home/luke/Desktop/karate.csv";
    15         String les_miserables = "/home/luke/Desktop/lesmis.csv";
    16         String power_grids = "/home/luke/Desktop/power.csv";
    17         String pol_blogs = "/home/luke/Desktop/polblogs.csv";
    18         String dolphins = "/home/luke/Desktop/dolphins.csv";
    19         String erdos_co_authors = "/home/luke/Desktop/erdos.csv";
    20         GraphClusterer cl = new GraphClusterer(dolphins,false,60);
    21         cl.clusterize(true);
     14        String maindir = "/home/luke/Desktop/nets/";
     15        String path_simply_net = maindir+"reteSemplice.txt";
     16        String path_mike_hidden = maindir+"reteUtentiMikeHidden.arff";
     17        String path_mike = maindir+"reteUtentiMike.arff";
     18        String karate_club = maindir+"karate.csv";
     19        String les_miserables = maindir+"lesmis.csv";
     20        String power_grids = maindir+"power.csv";
     21        String pol_blogs = maindir+"polblogs.csv";
     22        String dolphins = maindir+"dolphins.csv";
     23        String erdos_co_authors = maindir+"erdos.csv";
     24        String net_science = maindir+"netscience.csv";
     25        String epinions = maindir + "soc-Epinions1.csv";
     26        String friend_feed = maindir + "ffeed.csv";
     27        boolean isDirected = true;
     28        boolean mainGraphOutput = false;
     29        boolean clusterGraphOutput = false;
     30        GraphClusterer cl = new GraphClusterer(friend_feed,isDirected,600000, mainGraphOutput);
     31        cl.clusterize(mainGraphOutput,clusterGraphOutput);
    2232
    2333    }
Note: See TracChangeset for help on using the changeset viewer.