diff --git a/src/EasyGA.py b/src/EasyGA.py index 93d6da5..c874907 100644 --- a/src/EasyGA.py +++ b/src/EasyGA.py @@ -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 - - -