An open API service indexing awesome lists of open source software.

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

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.