Last active
June 11, 2019 18:16
-
-
Save jenetics/4a18da7921a5cb5c94f55fec757c3c22 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| final int depth = 5; | |
| final ISeq<Op<Double>> operations = ISeq.of(...); | |
| final ISeq<Op<Double>> terminals = ISeq.of(...); | |
| final ProgramChromosome<Double> program = ProgramChromosome.of( | |
| depth, | |
| operations, | |
| terminals | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment