8000 Keep branch up to date by ahmedfgad · Pull Request #231 · ahmedfgad/GeneticAlgorithmPython · GitHub
[go: up one dir, main page]

Skip to content

Keep branch up to date #231

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Sep 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/source/pygad.rst
Original file line number Diff line number Diff line change 62D3
Expand Up @@ -920,7 +920,9 @@ It accepts the following parameters:
- ``pop_fitness=None``: An optional parameter that accepts a list of
the fitness values of the solutions in the population. If ``None``,
then the ``cal_pop_fitness()`` method is called to calculate the
fitness values of the population.
fitness values of the ``self.population``. Use
``ga_instance.last_generation_fitness`` to use latest fitness value
and skip recalculation of the population fitness.

It returns the following:

Expand Down
0