8000 Merge pull request #272 from ahmedfgad/github-actions · ma-kaay/GeneticAlgorithmPython@98b187b · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 98b187b

Browse files
authored
Merge pull request ahmedfgad#272 from ahmedfgad/github-actions
Cite journal paper
2 parents d76c60f + 30de970 commit 98b187b

File tree

3 files changed

+19
-20
lines changed

3 files changed

+19
-20
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -311,13 +311,13 @@ Find the book at these links:
311311
If you used PyGAD, please consider adding a citation to the following paper about PyGAD:
312312

313313
```
314-
@misc{gad2021pygad,
315-
title={PyGAD: An Intuitive Genetic Algorithm Python Library},
316-
author={Ahmed Fawzy Gad},
317-
year={2021},
318-
eprint={2106.06158},
319-
archivePrefix={arXiv},
320-
primaryClass={cs.NE}
314+
@article{gad2023pygad,
315+
title={Pygad: An intuitive genetic algorithm python library},
316+
author={Gad, Ahmed Fawzy},
317+
journal={Multimedia Tools and Applications},
318+
pages={1--14},
319+
year={2023},
320+
publisher={Springer}
321321
}
322322
```
323323

docs/source/index.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -228,13 +228,13 @@ details:
228228

229229
.. code::
230230
231-
@misc{gad2021pygad,
232-
title={PyGAD: An Intuitive Genetic Algorithm Python Library},
233-
author={Ahmed Fawzy Gad},
234-
year={2021},
235-
eprint={2106.06158},
236-
archivePrefix={arXiv},
237-
primaryClass={cs.NE}
231+
@article{gad2023pygad,
232+
title={Pygad: An intuitive genetic algorithm python library},
233+
author={Gad, Ahmed Fawzy},
234+
journal={Multimedia Tools and Applications},
235+
pages={1--14},
236+
year={2023},
237+
publisher={Springer}
238238
}
239239
240240

docs/source/pygad.rst

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ The ``pygad.GA`` class constructor supports the following parameters:
119119
function can be passed starting from `PyGAD
120120
2.16.0 <https://pygad.readthedocs.io/en/latest/releases.html#pygad-2-16-0>`__.
121121
Check the `User-Defined Crossover, Mutation, and Parent Selection
122-
Operators <https://pygad.readthedocs.io/en/latest/pygad_more.html#user-defined-crossover-mutation-and-parent-selection-operators>`__
122+
Operators <https://pygad.readthedocs.io/en/latest/utils.html#user-defined-crossover-mutation-and-parent-selection-operators>`__
123123
section for more details about building a user-defined parent
124124
selection function.
125125

@@ -1037,11 +1037,10 @@ Let's discuss how to do each of these steps.
10371037
Preparing the ``fitness_func`` Parameter
10381038
-----------------------------------------
10391039

1040-
Even though some steps in the genetic algorithm pipeline can
1041-
work the same regardless of the problem being solved, one critical step
1042-
is the calculation of the fitness value. There is no unique way of
1043-
calculating the fitness value and it changes from one problem to
1044-
another.
1040+
Even though some steps in the genetic algorithm pipeline can work the
1041+
same regardless of the problem being solved, one critical step is the
1042+
calculation of the fitness value. There is no unique way of calculating
1043+
the fitness value and it changes from one problem to another.
10451044

10461045
PyGAD has a parameter called ``fitness_func`` that allows the user to
10471046
specify a custom function/method to use when calculating the fitness.

0 commit comments

Comments
 (0)
0