I have some code for a GA, that starts like this
import random
#
# Global variables
# Setup optimal string and GA input variables.
POP_SIZE = random.randint(100,200)
# random code that doesn't really matter...
# Simulate all of the generations.
for generation in xrange(GENERATIONS):
print "Generation %s... Random sample: '%s'" % (generation, population[0])
print POP_SIZE
weighted_population = []
The important part is print POP_SIZE
.
It prints what it needs to, and then the POP_SIZE
stays the same, but is randomized
ONLY if I exit the program and start it up again.
I want it to vary betweeen the paramaters I set at the beginning, which was
POP_SIZE = random.randint(100,200)
Thoughts?
Rather than
print POP_SIZE
, you couldprint POP_SIZE()
where:Each time you call
POP_SIZE()
it will return a new random integer.