Skip to content

Commit f62bd97

Browse files
Update optimizer.py
1 parent bab6cee commit f62bd97

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pypop7/optimizers/core/optimizer.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ class Terminations(IntEnum):
1212
the black-box optimizer will stop to run immediately.
1313
* MAX_RUNTIME: When the maximum of actual runtime is reached, the black-box
1414
optimizer will stop to run immediately.
15-
* FITNESS_THRESHOLD
15+
* FITNESS_THRESHOLD: When the threshold of the *best-so-far* fitness is reached,
16+
the black-box optimizer will stop to run immediately.
1617
* EARLY_STOPPING
1718
"""
1819
NO_TERMINATION = 0

0 commit comments

Comments
 (0)