Skip to content

Commit

Permalink
Update pypop7/optimizers/cc/_test_hcc.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Evolutionary-Intelligence committed Nov 30, 2023
1 parent ba3c341 commit ad3fe8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pypop7/optimizers/cc/_test_hcc.py
Expand Up @@ -20,8 +20,8 @@ def test_optimize(self):
print('*' * 7 + ' ' + f.__name__ + ' ' + '*' * 7)
problem = {'fitness_function': f,
'ndim_problem': ndim_problem,
'lower_boundary': -5*np.ones((ndim_problem,)),
'upper_boundary': 5*np.ones((ndim_problem,))}
'lower_boundary': -5.0*np.ones((ndim_problem,)),
'upper_boundary': 5.0*np.ones((ndim_problem,))}
options = {'max_function_evaluations': 2e6,
'fitness_threshold': 1e-10,
'seed_rng': 0,
Expand Down

0 comments on commit ad3fe8c

Please sign in to comment.