- Run Type
- Run Date
- Run Name
- Why are we doing this run?
- Check to see if stringReplacement2.py changes were successfull
- What is different about this run from the last?
- added below code in order to create a fitness file inside of each generation to display the fitness scores for just that generation, as opposed to just having one big file full of all the generations.
f2 = open(source + "/" + "gen_{}".format(gen) + "/fitnessFile_gen_{}".format(gen) + ".txt", 'a')
f2.write(','.join(mean_Veff_array) + "\n")
f2.close()
- Symmetric, asymmetric, linear, nonlinear?
- Number of individuals (NPOP)
- Operators / Selection methods used (% of each)
- roulette crossover 50%
- roulette mutation 16%
- tournament crossover 18%
- tournament mutation 16%
- Are we using the database?
|