-
Notifications
You must be signed in to change notification settings - Fork 0
/
genetico.py
95 lines (85 loc) · 3.2 KB
/
genetico.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import random
import math
from team import Time
import matplotlib.pyplot as plt
class AlgoritmoGenetico:
def __init__(self, populacao, data):
self.populacao = populacao
self.fit_medio = []
self.fitMelhor = []
self.data = data
def deve_cruzar(self, alfa):
deve = random.uniform(0.0, 1.0)
if(alfa >= deve):
return True
return False
def cruzamento(self, pai1, pai2):
team1 = []
team2 = []
aux = True
for player1, player2 in zip(pai1.team, pai2.team):
if aux:
team1.append(player1)
team2.append(player2)
aux = False
else:
team1.append(player2)
team2.append(player1)
aux = True
filho1 = Time(team1)
filho2 = Time(team2)
return [filho1, filho2]
def deve_mutar(self, alfa):
deve = random.uniform(0.0, 1.0)
if(alfa >= deve):
return True
return False
def mutacao(self, team):
random_n = random.randint(-1, 1)
for index, player in enumerate(team):
if self.deve_mutar(0.1):
jogadores = self.data.v_positions[self.data.PLAYERS[player.position]]
select_player = (player.position_data + random_n) % len(jogadores)
if select_player < 0:
select_player = 0
team[index] = jogadores[select_player]
return team
def run(self, geracoes):
T = 0
while(T < geracoes):
selecionado = self.populacao.selecionar_melhor()
self.fitMelhor.append(selecionado.fit)
self.populacao.calcular_acumulado()
selecionados = self.populacao.selecionar_individuos()
self.populacao.populacao = selecionados
i = 0
while(i < len(selecionados)):
if self.deve_cruzar(0.3):
filhos = self.cruzamento(self.populacao.populacao[i], self.populacao.populacao[i + 1])
self.populacao.populacao[i] = filhos[0]
self.populacao.populacao[i + 1] = filhos[1]
i += 2
i = 0
while(i < len(self.populacao.populacao)):
time = self.mutacao(self.populacao.populacao[i].team)
self.populacao.populacao[i] = Time(time)
i += 1
T += 1
index = 0
indexAtual = 0
fit = self.populacao.populacao[0].fit
for index, individuo in enumerate(self.populacao.populacao):
if(individuo.fit < fit):
fit = individuo.fit
indexAtual = index
if(self.populacao.populacao[indexAtual].fit < selecionado.fit):
self.populacao.populacao[indexAtual] = selecionado
fit_medio = self.populacao.acumulado / self.populacao.size
self.fit_medio.append(int(fit_medio))
self.populacao.calcular_acumulado()
melhor = self.populacao.selecionar_melhor()
for i in melhor.team:
print i.name, i.overall
plt.plot(self.fitMelhor)
plt.plot(self.fit_medio)
plt.show()