Skip to content

Commit e06b839

Browse files
committed
Merge branch 'dev'
2 parents 3b9521a + 9e46a40 commit e06b839

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

moead_framework/algorithm/abstract_moead.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def __init__(self, problem, max_evaluation, number_of_objective, number_of_weigh
5555
if offspring_generator is None:
5656
self.offspring_generator = OffspringGeneratorGeneric(algorithm_instance=self)
5757
else:
58-
self.offspring_generator = offspring_generator
58+
self.offspring_generator = offspring_generator(algorithm_instance=self)
5959

6060
@abstractmethod
6161
def run(self, checkpoint=None):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="moead-framework",
8-
version="0.5.2",
8+
version="0.5.3",
99
author="Geoffrey Pruvost",
1010
author_email="geoffrey@pruvost.xyz",
1111
description="MOEA/D Framework in Python 3",

0 commit comments

Comments
 (0)