Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Evolutionary-Intelligence authored Oct 28, 2024
1 parent 6f1f4af commit 250a0ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Without loss of generality, only the **minimization** process is considered here
from pypop7.optimizers.es.lmmaes import LMMAES # Limited-Memory Matrix Adaptation ES
# to define algorithm options (which may differ in details among different optimizers)
options = {'fitness_threshold': 1e-10, # to terminate when best-so-far fitness is <= it
'max_runtime': 3600.0, # to terminate when actual runtime >= 1 hours
'max_runtime': 3600.0, # to terminate when actual runtime >= 1 hours (3600 seconds)
'seed_rng': 0, # seed of random number generation (should be set for repeatability)
'x': 4.0 * np.ones((ndim_problem,)), # initial mean of search/mutation distribution
'sigma': 3.0, # initial global step-size of distribution (not necessarily optimal)
Expand Down

0 comments on commit 250a0ed

Please sign in to comment.