-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule MultiNEAT
updated
20 files
+1 −0 | .travis.yml | |
+25 −5 | README.md | |
+2 −1 | examples/gym/lunar_lander.py | |
+20 −19 | examples/gym/walker.py | |
+14 −5 | multineat/__init__.py | |
+1 −3 | multineat/viz.py | |
+116 −84 | src/Genes.h | |
+137 −21 | src/Genome.cpp | |
+8 −113 | src/Genome.h | |
+5 −5 | src/Innovation.cpp | |
+37 −8 | src/Innovation.h | |
+16 −16 | src/NeuralNetwork.cpp | |
+15 −16 | src/Parameters.cpp | |
+16 −6 | src/Parameters.h | |
+43 −51 | src/Population.cpp | |
+92 −2 | src/Population.h | |
+7 −0 | src/PythonBindings.cpp | |
+51 −30 | src/Species.cpp | |
+49 −5 | src/Species.h | |
+1 −1 | tests/xor/main.cpp |