From 91077765623415f34a32a055c271c9b27833a178 Mon Sep 17 00:00:00 2001 From: Julian Blank Date: Sat, 25 Nov 2023 16:52:33 -0800 Subject: [PATCH] SMS: Change the default SBX exchange rate also to 1.0 --- pymoo/algorithms/moo/sms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymoo/algorithms/moo/sms.py b/pymoo/algorithms/moo/sms.py index f9ae526cb..03e7d9c15 100644 --- a/pymoo/algorithms/moo/sms.py +++ b/pymoo/algorithms/moo/sms.py @@ -137,7 +137,7 @@ def __init__(self, pop_size=100, sampling=FloatRandomSampling(), selection=TournamentSelection(func_comp=cv_and_dom_tournament), - crossover=SBX(prob_exch=0.5), + crossover=SBX(), mutation=PM(), survival=LeastHypervolumeContributionSurvival(), eliminate_duplicates=True,