34 lines
938 B
C++
34 lines
938 B
C++
#include <iostream>
|
|
#include <ctime>
|
|
#include "processor/KolchShindyalov.h"
|
|
#include "processor/Processor.h"
|
|
#include "processor/Settings.h"
|
|
//#include "DerevyankoReport.h"
|
|
#include "DerevyankoReport2014.h"
|
|
|
|
int main(int argc, char** argv){
|
|
|
|
/*if(argc < 2){
|
|
std::cerr<<"No input file specified\nTrying default script file (DecScript.txt)\n";
|
|
Settings::initScript("DecScript.txt");
|
|
}
|
|
else{
|
|
Settings::initScript(argv[1]);
|
|
}*/
|
|
|
|
time_t rawtime;
|
|
time ( &rawtime );
|
|
std::cout<<"*** Starting\tDEC v0.0 ***\t"<<ctime (&rawtime)<<std::endl;
|
|
//Processor::test(initPSize, generations);
|
|
//Processor::test01(/*initPSize, generations*/);
|
|
//Processor::testInOutBreeding01();
|
|
//KolchShindyalov::test01();
|
|
//DerevyankoReport::reportRFBR2013_01();
|
|
DerevyankoReport2014::report2014_01(argc,argv);
|
|
|
|
time ( &rawtime );
|
|
std::cout<<"*** Ending\tDEC v0.0 ***\t"<<ctime (&rawtime)<<std::endl;
|
|
|
|
return 0;
|
|
}
|