简体   繁体   中英

Difference between DEAP fitness and fitness.value

For the following code, why does printing out ind.fitness and printing out ind.fitness.values returns the same exact output. Does it mean the method is the same or is there any difference?

for ind, fit in zip(pop, fitnesses):
        #print(ind, fit)
        ind.fitness.values = fit
        print("Fitness", ind.fitness)
        print(ind.fitness.values)

ind.fitness is an object that has different functions, variables etc.. It was implemented so that printing this object will print the variable "values" which is a variable in this object. 在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM