-
Notifications
You must be signed in to change notification settings - Fork 3
/
jmoo_individual.py
executable file
·62 lines (49 loc) · 2.18 KB
/
jmoo_individual.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
"""
##########################################################
### @Author Joe Krall ###############################
### @copyright see below ###############################
This file is part of JMOO,
Copyright Joe Krall, 2014.
JMOO is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
JMOO is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with JMOO. If not, see <http://www.gnu.org/licenses/>.
### ###############################
##########################################################
"""
"Brief notes"
"Representation of a 'Candidate' or 'Individual'"
from jmoo_fitness import *
class jmoo_individual:
def __init__(ind, problem, decisionValues, fitness = None):
ind.problem = problem
ind.decisionValues = decisionValues
ind.fitness = jmoo_fitness(problem, fitness=fitness)
def __str__(ind):
s = "problem: " + str(ind.problem.name) + "\n"
s += "decisions: " + str(ind.decisionValues) + "\n"
s += "fitness: " + str(ind.fitness) + "\n"
try: # specific for moead
s += "Neighbor: " + str(ind.neighbor) + "\n"
s += "weight: " + str(ind.weight) + "\n"
s += "Id: " + str(ind.id) + "\n"
except: pass
return s
def __eq__(ind, other):
return ind.__dict__ == other.__dict__
def evaluate(ind):
if ind.fitness:
ind.fitness.setFitness( ind.problem.evaluate(ind.decisionValues) )
else:
ind.fitness = jmoo_fitness(ind.problem)
ind.fitness.setFitness( ind.problem.evaluate(ind.decisionValues) )
@property
def valid(self):
if self.fitness is None: return False
else: return self.fitness.valid