Advertisement
CarlosWGama

AG - Construtor

Jan 15th, 2020
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.56 KB | None | 0 0
  1. class AlgoritmoGenetico:
  2.     def __init__(self, dados, tamPopulacao = 10, limGeracoes = 50, 
  3.              probMutacao=5, funcaoFitness = None, maiorFitness = True):
  4.         #Atributos
  5.         self.dados = dados
  6.         self.tamPopulacao = tamPopulacao
  7.         self.limGeracoes = limGeracoes
  8.         self.funcaoFitness = funcaoFitness
  9.         self.maiorFitness = maiorFitness
  10.         self.probMutacao = probMutacao
  11.         self.populacao = []
  12.         self.geracao = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement