-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjmoo_fitness.py
executable file
·72 lines (54 loc) · 2.41 KB
/
jmoo_fitness.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
"""
##########################################################
### @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 Fitness"
class jmoo_fitness:
def __init__(fit, problem, fitness = None):
fit.problem = problem
fit.fitness = fitness
if fitness:
weights=[-1.0 if obj.lismore else 1.0 for obj in problem.objectives]
fit.weightedFitness = (f*w for f,w in zip(fitness,weights))
def __str__(fit):
return str(fit.fitness)
def setFitness(fit, fitness):
fit.fitness = fitness
weights=[-1.0 if obj.lismore else 1.0 for obj in fit.problem.objectives]
fit.weightedFitness = (f*w for f,w in zip(fitness,weights))
@property
def valid(self):
return not(self.fitness == None)
def __gt__(self, other):
return not self.__le__(other)
def __ge__(self, other):
return not self.__lt__(other)
def __le__(self, other):
return self.weightedFitness <= other.weightedFitness
def __lt__(self, other):
return self.weightedFitness < other.weightedFitness
def __deepcopy__(self, memo):
"""Replace the basic deepcopy function with a faster one.
It assumes that the elements in the :attr:`values` tuple are
immutable and the fitness does not contain any other object
than :attr:`values` and :attr:`weights`.
"""
copy = self.__class__(self.problem)
copy.fitness = self.fitness
return copy