First commit - Seems to pass "all 1's" evolution test

This commit is contained in:
2018-04-13 23:59:20 -07:00
parent 1ee1d3282b
commit 854ad5a1a3
13 changed files with 1231 additions and 0 deletions

13
Defines.h Normal file
View File

@ -0,0 +1,13 @@
#ifndef BITEVOLVER_DEFINES_H
#define BITEVOLVER_DEFINES_H
//
#define BIT_EVOLVER_POPULATION_DEFAULT_POPULATION_SIZE 100
#define BIT_EVOLVER_POPULATION_DEFAULT_MUTATE_RATE 0.01
#define BIT_EVOLVER_POPULATION_DEFAULT_CROSSOVER 0.7
#endif