Skip to content

Commit

Permalink
update to 6.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
PasaOpasen committed Apr 14, 2024
1 parent 1af178c commit 7a5d27e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ https://pasaopasen.github.io/geneticalgorithm2/
- [Updates information](#updates-information)
- [**Future**](#future)
- [**TODO firstly**](#todo-firstly)
- [6.9.2 bugfixes](#692-bugfixes)
- [6.9.1 refactor](#691-refactor)
- [6.9.0 reborn](#690-reborn)
- [6.8.7 minor update](#687-minor-update)
Expand Down Expand Up @@ -163,6 +164,8 @@ pip install geneticalgorithm2[full]
## **TODO firstly**
- Remove old style mentions from README

## 6.9.2 bugfixes

## 6.9.1 refactor

- Finally move `function_timeout` and `function` to `run()` method and deprecate its usage in init()
Expand Down
2 changes: 1 addition & 1 deletion geneticalgorithm2/selections.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def func(scores: array1D, parents_count):
else:
f = np.maximum(epsilon, 1 + (f - average)/(2*sigma))

return Selection.__roulette(f, parents_count)
return roulette(f, parents_count)

return func

Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.9.1
6.9.2

0 comments on commit 7a5d27e

Please sign in to comment.