Exponential Functions
|
Structure for options to be used when running one of the two genetic algorithms in a Function object. More...
#include <Exponential.h>
Public Attributes | |
double | min_range = -100 |
Minimum value you believe the answer can be. | |
double | max_range = 100 |
Maximum value you believe the answer can be. | |
unsigned int | num_of_generations = 10 |
Number of times you'd like to run the algorithm (increasing this value causes the algorithm to take longer) | |
unsigned int | sample_size = 1000 |
Amount of approximate solutions you'd like to be returned. | |
unsigned int | data_size = 100000 |
Amount of solutions you'd like the algorithm to generate (increasing this value causes the algorithm to take longer) | |
double | mutation_percentage = 0.01 |
How much you'd like the algorithm to mutate solutions (Leave this as default in most cases) | |
Structure for options to be used when running one of the two genetic algorithms in a Function object.