Init version

This commit is contained in:
2024-10-03 18:43:04 +07:00
commit f80052961f
186 changed files with 71676 additions and 0 deletions

33
DEC-0.0.cpp Normal file
View File

@@ -0,0 +1,33 @@
#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;
}