Adding comments

This commit is contained in:
Daniel Wilczak
2020-09-20 16:00:12 -04:00
parent abc882b743
commit 67b41cb3b7

View File

@ -20,6 +20,10 @@ class gene:
def get_value(self):
return self.value
# Should the gene creation of the genes veriation be
# included in the gene class or should the use just
# assign value to the gene and we move on?
class chromosome:
# Defults
# fitness = double, genes = [gene,gene,gene,etc]
@ -40,6 +44,3 @@ class population:
class ga:
pass