source: framspy/evolalg/repair/const.py @ 1113

Last change on this file since 1113 was 1113, checked in by Maciej Komosinski, 3 years ago

Added a framework for evolutionary algorithms cooperating with FramsticksLib?.py

File size: 310 bytes
Line 
1import copy
2
3from evolalg.repair.repair import Repair
4
5
6class ConstRepair(Repair):
7    def __init__(self, value, excepted_size):
8        super(ConstRepair, self).__init__(excepted_size)
9        self.value = value
10
11    def generate_new(self, population, missing_count):
12        return copy.deepcopy(self.value)
Note: See TracBrowser for help on using the repository browser.