https://github.com/wdevore/geneticalgorithms
A small range of genetic algorithms written in Dart/Flutter
https://github.com/wdevore/geneticalgorithms
Last synced: about 1 year ago
JSON representation
A small range of genetic algorithms written in Dart/Flutter
- Host: GitHub
- URL: https://github.com/wdevore/geneticalgorithms
- Owner: wdevore
- License: mit
- Created: 2024-08-22T16:35:03.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-30T01:00:45.000Z (almost 2 years ago)
- Last Synced: 2024-08-30T03:26:52.696Z (almost 2 years ago)
- Language: Dart
- Size: 181 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GeneticAlgorithms
A small range of genetic algorithms written in Dart/Flutter
- Heredity
- Variation
- Selection
# Simple Examples
## Simple1_BestPhrase
- from [The Coding train](https://www.youtube.com/watch?v=RxTfc4JLYKs&list=PLfyzK85uts6o169n2ISWD40M3bdhCA_Ni&index=11&t=187s).
### Project creation
```sh
flutter create --platform linux --template app simple1_bestphrase
```
### Launch config
```json
{
"name": "Simple1_BestPhrase",
"cwd": "projects/simple1_bestphrase",
"type": "dart",
"request": "launch",
"program": "lib/main.dart"
},
```
Make sure you add */simple1_bestphrase* to the "cwd" key or it won't start and asks for a device.