1 2 3 4 5 6 7 8 9 10 11 12
#ifndef GENETIC_CONFIG_H #define GENETIC_CONFIG_H #include <stdint.h> namespace Genetic { typedef uint32_t Time; typedef uint32_t PhenotypeId; }; #endif