Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Commit f8b3b01

Browse files
author
Tanguy Damart
committed
Fixed the fix
1 parent 8e67374 commit f8b3b01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bluepyopt/deapext/CMA_MO.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def __init__(
104104
from itertools import cycle
105105

106106
generator = cycle(centroids)
107-
starters = [numpy.copy(next(generator)) for i in range(lambda_)]
107+
starters = [copy.deepcopy(next(generator)) for i in range(lambda_)]
108108
else:
109109
starters = centroids
110110

0 commit comments

Comments
 (0)