https://github.com/fcevado/genetic
A tooling library for genetic algorithm implementations in Elixir.
https://github.com/fcevado/genetic
Last synced: 3 months ago
JSON representation
A tooling library for genetic algorithm implementations in Elixir.
- Host: GitHub
- URL: https://github.com/fcevado/genetic
- Owner: fcevado
- Created: 2016-09-18T19:06:16.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-18T21:36:46.000Z (over 8 years ago)
- Last Synced: 2025-02-07T00:36:25.449Z (4 months ago)
- Language: Elixir
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Genetic
This project is an attempt to create an abstraction of how any genetic algorithm works, in a way that the user would only worry about the implementation of functions that is necessary for his problem. So Genetic would care about handling the chromossomes, execute the evolution cicle, get rid of the chromossomes not selected, apply mutations, apply fitness functions and so on... In the other side the user of this library would only worry about implement the fitness function, the mutation function, crossover function and so on...This is the initial steps, and I hope soon it will be fully functional.
I know there are some other projects about genetic algorithm in Elixir, most of them seems stopped and didn't focus on the OTP principles.