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