-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from cavalab/island_GA
(py)Brush v1.0: islands!
- Loading branch information
Showing
123 changed files
with
9,153 additions
and
2,252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
*.vscode | ||
*.html | ||
|
||
# files generated by running the test suite | ||
tests/cpp/__* | ||
|
||
tags | ||
build/ | ||
operon/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Archive | ||
======= | ||
|
||
.. doxygenstruct:: Brush::Pop::Archive | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Engine (and parameters) | ||
======================= | ||
|
||
.. doxygenstruct:: Brush::Parameters | ||
:members: | ||
|
||
.. doxygenclass:: Brush::Engine | ||
:members: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Evaluation | ||
========== | ||
|
||
.. doxygenclass:: Brush::Eval::Evaluation | ||
:members: | ||
|
||
.. doxygenclass:: Brush::Eval::Scorer | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,5 +13,11 @@ search_space | |
program | ||
node | ||
nodetypes | ||
individual | ||
evaluation | ||
population | ||
variation | ||
selection | ||
archive | ||
engine | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Individual and Fitness | ||
====================== | ||
|
||
.. doxygenclass:: Brush::Pop::Individual | ||
:members: | ||
|
||
.. doxygenstruct:: Brush::Fitness | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Population | ||
========== | ||
|
||
.. doxygenclass:: Brush::Pop::Population | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Selection | ||
========= | ||
|
||
.. doxygenclass:: Brush::Sel::Selection | ||
:members: | ||
|
||
.. doxygenclass:: Brush::Sel::SelectionOperator | ||
:members: | ||
|
||
.. doxygenclass:: Brush::Sel::NSGA2 | ||
:members: | ||
|
||
.. doxygenclass:: Brush::Sel::Lexicase | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
Variation (Crossover/Mutation) | ||
============================== | ||
|
||
.. doxygenfile:: variation.h | ||
.. doxygenclass:: Brush::Var::MutationBase | ||
:members: | ||
|
||
.. doxygenclass:: Brush::Var::Variation | ||
:members: |
Oops, something went wrong.