Franz Wilhelmstötter

Results 20 comments of Franz Wilhelmstötter

I'm not in principle against a Kotlin-Implementation of the JPX library. The main constraints are my limitied resources for maintaining it. I still want to keep a Java implementation, because...

I also see a 3rd option: Multi release Jars. Will work for Java 9+. I haven't experimented with this feature and don't know how it is supported by the IDE...

Thank you, you are right. There is a bug in the `BitChromosome::bitCount` method for chromosomes smaller then 8. **Fix** *Bits.java* ```java public static int count(final byte[] bits, final int start,...

You might want to have a look at the [Evolution](https://www.javadoc.io/doc/io.jenetics/jenetics/latest/io.jenetics.base/io/jenetics/engine/Evolution.html) interface and the [EvolutionStream.ofEvolution](https://www.javadoc.io/doc/io.jenetics/jenetics/latest/io.jenetics.base/io/jenetics/engine/EvolutionStream.html#ofEvolution(java.util.function.Supplier,io.jenetics.engine.Evolution)) factory method. This should do the trick. There is also an example in the linked Javadoc.

There is currently no progress for this feature.

Yes, that would be nice ;-) I already explored the _island model_ myself. Although Jenetics has all building blocks to do this, it is not that easy to implement a...

I already thought about relaxing the GP constraint. It is not only the mutation, which can destroy the constraints. Also, the initial tree generation must obey the (implicitly) given rules....

You are welcome, if you want to try to implement this feature. I think we will need an additional `Op` interface. ```java interface GenericOp extends Op { public Class returnType();...

@c2v4 there is no progress regarding this issue. I have to do some research work myself, which I haven't had the time to do so far. I don't think this...