15 lines
457 B
C++
15 lines
457 B
C++
#pragma once
|
|
#include <string>
|
|
#include "population/Population.h"
|
|
|
|
class DerevyankoReport2014
|
|
{
|
|
public:
|
|
static void report2014_01(int argc, char** argv);
|
|
static std::string getInitGene(int type = 0, int num = 0);
|
|
static BisexualPopulation* populationFactory(int size, const std::vector<std::string>& genome);
|
|
static std::vector<std::string> parseScript(std::string fileName);
|
|
//static void parseCalc(std::vector<std::string> script);
|
|
};
|
|
|