Skip to content

Commit

Permalink
VERSION 0.3.2.dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Blank committed Aug 15, 2019
1 parent c95c9f9 commit 9b808e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions pymoo/algorithms/rnsga2.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,12 @@ def __init__(self,
self.weights = weights
self.normalization = normalization
self.selection = RandomSelection()
self.survival = RankAndModifiedCrowdingSurvival(ref_points, epsilon, weights, normalization,
extreme_points_as_reference_points)

super().__init__(**kwargs)

self.survival = RankAndModifiedCrowdingSurvival(ref_points, epsilon, weights, normalization,
extreme_points_as_reference_points)


class RankAndModifiedCrowdingSurvival(Survival):

Expand Down
2 changes: 1 addition & 1 deletion pymoo/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.1"
__version__ = "0.3.2.dev"

0 comments on commit 9b808e6

Please sign in to comment.