Franz Wilhelmstötter
Franz Wilhelmstötter
@3Fish, release 7.1.0 contains classes for Grammatical Evolution (GE), which might be a possibility to do multi type GP. A simple example is given in the [GrammaticalJavaScriptEvolution](https://github.com/jenetics/jenetics/blob/master/jenetics.example/src/main/java/io/jenetics/example/GrammaticalJavaScriptEvolution.java) example. Is related...
Good idea. I would be happy to review a PR for such an example 😀.
By default, the library executes the fitness function, and some parts of the selection algorithm, concurrently. The GA itself is executed in a serial way, one generation after another. Before...
The `Limits` class is just a collection of pre-defined implementations. Your own limit-predicate don't need to be part of it. You can implement whereever you want. Technically, there are two...
Hi! You are right, Jenetics only supports one constraint and your approach is the one to handle this _restriction_. I think, that supporting multiple constraints isn't also not straight forward....
Hi Rodolfo! I think your analysis is quite accurate. Jenetics tries to keep things simple, and therefore treats a constraint like a black box. The user knows best, hopefully, how...
The [PartialAlterer](https://jenetics.io/javadoc/jenetics/8.0/io.jenetics.base/io/jenetics/PartialAlterer.html) will do this trick. ```java final Genotype genotype = Genotype.of( IntegerChromosome.of(1, 10, 10), // First chromosome IntegerChromosome.of(1, 3, 10), // Second chromosome IntegerChromosome.of(1, 10, 10), // Third chromosome...
Great! I haven't had time jet to tryout GraalVM myself. It would be amazing if you could post a short description what you did and how you ran the examples....
Hi! I am not able to reproduce the error. I tried it on Linux with Java 21 and the current GPX version 3.2.1. Are you trying the code on Android?...
Is the extensions element correct? The child element should be prefixed with the namespace, right? ```xml ```