A Java program for visualizing implementations of the "Simple Genetic Algorithm."
http://en.wikipedia.org/wiki/Genetic_algorithm
JRE 1.8+
Compile:
javac -d bin src/gaViz/**/*.java src/swingUiDriver/*.java src/javafxDriver/*.java
To view genetic algorithms as text, 2D images, or 2D animations:
java -cp ./bin swingUiDriver.Init
To visualize the algorithm in 3D space:
java -cp ./bin javafxDriver.Init
More project documentation: http://0la0.github.io/#!/projects/gaViz