https://github.com/ivanbgd/genetic-algorithm-maximum-area-in-ellipse-python3
Genetic Algorithm in Python 3 for inscribing a triangle of the maximum area in a given ellipse.
https://github.com/ivanbgd/genetic-algorithm-maximum-area-in-ellipse-python3
artificial-intelligence genetic-algorithm genetic-algorithms python python3 soft-computing
Last synced: 11 months ago
JSON representation
Genetic Algorithm in Python 3 for inscribing a triangle of the maximum area in a given ellipse.
- Host: GitHub
- URL: https://github.com/ivanbgd/genetic-algorithm-maximum-area-in-ellipse-python3
- Owner: ivanbgd
- License: mit
- Created: 2021-12-05T19:22:04.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-05T20:13:07.000Z (about 4 years ago)
- Last Synced: 2025-02-03T10:11:58.565Z (about 1 year ago)
- Topics: artificial-intelligence, genetic-algorithm, genetic-algorithms, python, python3, soft-computing
- Language: Python
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Genetic_Algorithm_01
Genetic Algorithm in Python for inscribing a triangle of the maximum area in a given ellipse.
Ellipse is defined as: (x/a)^2 + (y/b)^2 = 1
User can change parameters of the GA and ellipse.
There are two versions.
The first one represents chromosomes as strings, the second one as integers.
Nevertheless, they are of the same speed (per generation).