| 16 | } |
| 17 | |
| 18 | int main() { |
| 19 | srand(time(NULL)); |
| 20 | gen::GeneticAlgo geneticAlgo = gen::GeneticAlgo(20, 0.4, 0.5, 10, getPopulationFitness); |
| 21 | net::NeuralNet modelNetwork = net::NeuralNet(1, 1, 1, 4, "simpleLinear"); |
| 22 | net::NeuralNet bestNetwork = geneticAlgo.getBestNeuralNetwork(600, modelNetwork); |
| 23 | } |
nothing calls this directly
no test coverage detected