Merge branch 'Dans_devel' into Jack_domain
This commit is contained in:
16
src/initialization/focused_initialization.py
Normal file
16
src/initialization/focused_initialization.py
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Import the data structure
|
||||||
|
from .population_structure.population import population as create_population
|
||||||
|
from .chromosome_structure.chromosome import chromosome as create_chromosome
|
||||||
|
from .gene_structure.gene import gene as create_gene
|
||||||
|
|
||||||
|
def focused_initialization(chromosome_length,population_size,gene_function):
|
||||||
|
# Create the population object
|
||||||
|
population = create_population()
|
||||||
|
# Fill the population with chromosomes
|
||||||
|
for i in range(population_size):
|
||||||
|
chromosome = create_chromosome()
|
||||||
|
#Fill the Chromosome with genes
|
||||||
|
for j in range(chromosome_length):
|
||||||
|
chromosome.add_gene(create_gene(gene_function()))
|
||||||
|
population.add_chromosome(chromosome)
|
||||||
|
return population
|
||||||
@ -1,5 +1,6 @@
|
|||||||
import EasyGA
|
import EasyGA
|
||||||
import random
|
import random
|
||||||
|
|
||||||
# Create the Genetic algorithm
|
# Create the Genetic algorithm
|
||||||
ga = EasyGA.GA()
|
ga = EasyGA.GA()
|
||||||
|
|
||||||
@ -22,3 +23,4 @@ ga.domain = user_gene_domain
|
|||||||
ga.initialize()
|
ga.initialize()
|
||||||
|
|
||||||
#ga.population.print_all()
|
#ga.population.print_all()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user