Skip to content

Commit eb8c27e

Browse files
committed
CMAES parallelize fix
1 parent 6e1b743 commit eb8c27e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymoo/algorithms/soo/nonconvex/cmaes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def __init__(self,
357357
358358
"""
359359
if pop_size is not None:
360-
kwargs["parallelize"] = True
360+
parallelize = True
361361
kwargs["popsize"] = pop_size
362362

363363
super().__init__(x0=x0, output=output, **kwargs)

0 commit comments

Comments
 (0)