X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=src%2Fmain.cpp;h=16e7de7768f853eb2de87fde7b7f2923c696d29b;hb=c997c8f4931cde3ede1b51905c10c4d9c442e630;hp=d9bce2f37ba2f901c38470a0d0b59ab1f2e323b3;hpb=8e617d91244bf6c8b22503850e10909fa2071c44;p=germs.git diff --git a/src/main.cpp b/src/main.cpp index d9bce2f..16e7de7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -20,10 +20,12 @@ int main(int argc, char** argv){ string ann = "default.ann"; Model model(0); bool detectModel = true; + bool onlyIdentify = false; + bool printPerm = false; //Parse command line arguments int opt; - while ((opt = getopt(argc, argv, "m:n:h")) != -1) { + while ((opt = getopt(argc, argv, "im:n:hp")) != -1) { switch (opt) { case 'm': model = Model::modelFactory(optarg); @@ -32,6 +34,12 @@ int main(int argc, char** argv){ case 'n': ann = optarg; break; + case 'i': + onlyIdentify = true; + break; + case 'p': + printPerm = true; + break; case 'h': cout << "Usage: " << argv[0] << " [OPTION] [FILE]" << endl << endl << " -m Specifies which model to use for sorting: Whirl, X, Zipper, FatX or Cloud " @@ -84,15 +92,26 @@ int main(int argc, char** argv){ //copy(go.begin(), go.end(), ostream_iterator(cout, " ")); //cout << endl; + if (onlyIdentify){ + return EXIT_SUCCESS; + } //Sort GeneSorter so; GeneSorter::ActionList al = so.sort(go,model); //Print the result double score = 0; + + GeneOrder temp(go); for (GeneSorter::ActionList::iterator sa = al.begin(); sa != al.end(); ++sa){ - cout << "Action: " << sa->toString() << " model score: " << model.score(*sa,go) << endl; - score += model.score(*sa,go); + cout << "Action: " << sa->toString() << " model score: " << model.score(*sa,temp) << endl; + (*sa)(temp); + score += model.score(*sa,temp); + + if (printPerm){ + copy(temp.begin(), temp.end(), ostream_iterator(cout, " ")); + cout << endl; + } } cout << "Avg score: " << score / al.size() << endl;