genetic-js
genetic-js copied to clipboard
Advanced genetic and evolutionary algorithm library written in Javascript
Is it possible to not use webworkers or simulation at all? So basically run single-threaded? It would be slower, but it would enable easy debugging, and not every situation needs...
How will I run code after the GA completes? Notification runs n times, I want code to run only once after the solution is found (or if not found just...
Is there any better AI technique or library available, and if yes, then what is its name and why is it better?
May you make an example to solve the tsp ? Thanks
Can you add the index value as a parameter to the seed function: ` // seed the population for (i=0;i
Using `eval(blobScript)` ([here](https://github.com/subprotocol/genetic-js/blob/f294b76b5b36a35ce2292222103e61280b8ea0d8/lib/genetic.js#L261)) was causing issues for me with module loading when running genetic-js in a node.js app. An example node.js app: ``` javascript // in my-fitness.js var stats =...
Minimal changes to support async fitness fitness functions with promises.
This is actually some quite large modification. I am not sure you will be interested, but I think it is worth proposing. First, I noticed that when running without web...
Make is native for Linux enviroments, but not for Windows. It takes a lot of dependencies for both. Change for Grunt or Gulp will increase development portability and make life...
isFinished false positive on last but one iteration fixed.(iterations counter is actually not zero-based) + PR #14 with manually merged PR #10