4 lines
165 B
Python
4 lines
165 B
Python
class initialization:
|
|
def initialize(self,chromosome_length,population_size,gene_function):
|
|
return [] # return an array of chromosomes for generation 0
|