Ignore:
Timestamp:
Oct 9, 2010, 12:24:38 PM (14 years ago)
Author:
gnappo
Message:

Aggiunto output in formato XML dei dati; modificato MQI (adesso cerca nella partizione piu` grande).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/weka/clusterers/MetisMQIClusterer.java

    r24 r26  
    3535       
    3636
    37         private Configuration conf = null;
    3837        /**
    3938         *
     
    122121                        setVerboseLevel(Integer.parseInt(optionString));
    123122                }
     123                optionString = Utils.getOption('o', options);
     124                if (optionString.length() != 0) {
     125                        setOutputFile(optionString);
     126                }
     127        }
     128
     129        private void setOutputFile(String outputFile) {
     130                Configuration.instance().setOutputFile(outputFile);
     131        }
     132       
     133        private String getOutputFile() {
     134                return Configuration.instance().getOutputFile();
    124135        }
    125136
     
    150161                result.add("-V");
    151162                result.add("" + getVerboseLevel());
     163                result.add("-o");
     164                result.add("" + getOutputFile());
    152165                return (String[]) result.toArray(new String[result.size()]);
    153166        }
     
    186199                result.addElement(new Option("\tverbosity of graphical output.\n"
    187200                                + "\t(default 1).", "V", 1, "-V <num>"));
     201                result.addElement(new Option("\tpath of the output file.\n"
     202                                , "o", 1, "-o <path>"));
    188203                return result.elements();
    189204        }
Note: See TracChangeset for help on using the changeset viewer.