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

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