From 98bd2dd1c4643b0e9c5b5d6a41c35a5da18c49ff Mon Sep 17 00:00:00 2001 From: jrtechs Date: Sat, 23 Feb 2019 10:36:19 -0500 Subject: [PATCH] Finished writing the genetic algorithm. --- geneticAlgorithm/geneticAlgo.html | 178 +++++++++++++++++++++++++++--- 1 file changed, 164 insertions(+), 14 deletions(-) diff --git a/geneticAlgorithm/geneticAlgo.html b/geneticAlgorithm/geneticAlgo.html index cdbd682..a79839b 100644 --- a/geneticAlgorithm/geneticAlgo.html +++ b/geneticAlgorithm/geneticAlgo.html @@ -1,8 +1,6 @@ - + let exampleOrganism = new Chromosome(geneList); + runGeneticOptimization(exampleOrganism, basicCostFunction, 100, 50, 0.01, 0.3, 20, 10); + +