コード例 #1
0
ファイル: Greedy.py プロジェクト: andxeg/volkanov_task_5
 def __init__(self):
     Algorithm.__init__(self)
     self.bankConf = []
     self.system = System()
     self.curconf = []
     self.numOper = 0
     self.finished = []
コード例 #2
0
ファイル: GA.py プロジェクト: mlshf/RelOpt-Interval-GA
 def __init__(self):
     Algorithm.__init__(self)
     self.population = []
     self.iterWithoutChange = 0
コード例 #3
0
ファイル: GA.py プロジェクト: mlshf/RelOpt-Interval-GA
 def Clear(self):
     Algorithm.Clear(self)
     self.population = []
     self.iterWithoutChange = 0
     self.candidate = None
コード例 #4
0
ファイル: GA.py プロジェクト: andxeg/volkanov_task_5
 def __init__(self):
     Algorithm.__init__(self)
     self.population = []
     self.iterWithoutChange = 0