Files
DEC/DerevyankoReport2015.h
2024-10-03 18:43:04 +07:00

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);
};