Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
muliyul committed Mar 14, 2017
1 parent ceb90ba commit 631eb88
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,21 +67,21 @@ microverse is a tiny library for quickly prototyping genetic algorithms. current
let rws = Roulette(2);

//Returns a crossover function that spreads
//parents traits evenly across a new
//parents traits evenly across a new offspring
let uxo = Uniform;
```
Note: unless specified manually, all

Read more about [crossovers](http://www.obitko.com/tutorials/genetic-algorithms/crossover-mutation.php) and [selectors](http://www.obitko.com/tutorials/genetic-algorithms/selection.php).

##TODO
-[x] Stream / Generator support as population output.
-[x] Add more crossover functions (Single Point, Double Point, Arithmetic).
-[x] Add more selector functions (Roulette Wheel, Rank, Steady-State).
-[ ] Proper object stream output.
-[ ] Add genetic programming example.
-[ ] Make it available to browsers.
-[ ] Benchmarks.
- [x] Stream / Generator support as population output.
- [x] Add more crossover functions (Single Point, Double Point, Arithmetic).
- [x] Add more selector functions (Roulette Wheel, Rank, Steady-State).
- [ ] Proper object stream output.
- [ ] Add genetic programming example.
- [ ] Make it available to browsers.
- [ ] Benchmarks.

##Development
Install dependencies: `npm i`
Expand Down

0 comments on commit 631eb88

Please sign in to comment.