-
-
Notifications
You must be signed in to change notification settings - Fork 489
pygaD- what's the D?
#135
-
Where does the D come from? It's not in 'python', 'genetic' or 'algorithms'
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 1 comment
-
This is mentioned in the PyGAD: An Intuitive Genetic Algorithm Python Library paper.
The name PyGAD has 3 parts:
- Py which means it is a Python library. This is a common naming convention for Python libraries.
- GA stands for genetic algorithm.
- D for decimal because the library was originally supporting only decimal genetic algorithm. Now, it supports both decimal and binary genetic algorithm.
You might think that PyGA is enough but there is an existing library with that name already at PyPI. This is why the extra D
was added.
Beta Was this translation helpful? Give feedback.
All reactions
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment