Skip to content

Commit f2f10de

Browse files
committed
fix indentation
1 parent e5bef4f commit f2f10de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/function_minimization/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Through evolutionary iterations, OpenEvolve discovered several key algorithmic c
145145
2. **Adaptive Step Size**: The step size is adjusted dynamically—shrinking as the search converges and expanding if progress stalls—leading to better coverage and faster convergence.
146146
```python
147147
if i > iterations * 0.75: # Reduce step size towards the end
148-
step_size *= 0.5
148+
step_size *= 0.5
149149
if no_improvement_count > step_size_increase_threshold: # Increase step size if stuck
150150
step_size *= 1.1
151151
no_improvement_count = 0 # Reset the counter

0 commit comments

Comments
 (0)