openems
openems copied to clipboard
Bump io.jenetics:jenetics from 7.2.0 to 8.0.0 in /cnf
Bumps io.jenetics:jenetics from 7.2.0 to 8.0.0.
Release notes
Sourced from io.jenetics:jenetics's releases.
v8.0.0
Improvements
- Java 21 is used for building and using the library.
- #878: Allow Virtual-Threads evaluating the fitness function. Must be enabled when creating an
Engine(see code snippet below), the previous behaviour has been preserverd.final Engine<DoubleGene, Double> engine = Engine.builder(ff) .fitnessExecutor(BatchExecutor.ofVirtualThreads()) .build();
- #880: Replace code examples in Javadoc with JEP 413.
- #886: Improve
CharStoresort.- #894: New genetic operators:
ShiftMutator,ShuffleMutatorandUniformOrderBasedCrossover.- #895: Improve default
RandomGeneratorselection. The usedRandomGeneratoris selected in the following order:
- Check if the
io.jenetics.util.defaultRandomGeneratorstart parameter is set. If so, take this generator.- Check if the
L64X256MixRandomgenerator is available. If so, take this generator.- Find the best available random generator according to the
RandomGeneratorFactory.stateBits()value.- Use the
Randomgenerator if no best generator can be found. This generator is guaranteed to be available on every platform.
Changelog
Sourced from io.jenetics:jenetics's changelog.
8.0.0
Improvements
- Java 21 is used for building and using the library.
- #878: Allow Virtual-Threads evaluating the fitness function.
final Engine<DoubleGene, Double> engine = Engine.builder(ff) .fitnessExecutor(BatchExecutor.ofVirtualThreads()) .build();
- #880: Replace code examples in Javadoc with JEP 413.
- #886: Improve
CharStoresort.- #894: New genetic operators:
ShiftMutator,ShuffleMutatorandUniformOrderBasedCrossover.- #895: Improve default
RandomGeneratorselection. The usedRandomGeneratoris selected in the following order:
- Check if the
io.jenetics.util.defaultRandomGeneratorstart parameter is set. If so, take this generator.- Check if the
L64X256MixRandomgenerator is available. If so, take this generator.- Find the best available random generator according to the
RandomGeneratorFactory.stateBits()value.- Use the
Randomgenerator if no best generator can be found. This generator is guaranteed to be available on every platform.
Commits
173b3f5Fix publish task.97cf1dcUpdate Gradle to 8.7.78fa9e1Add citation.2ba18baRemove 'SNAPSHOT' from version string.ef44646Document new mutators.50c0bc8Rename class to 'ShiftMutator' test.02d7447Fix indentations.c6a508bDescribe 'Sampler' interface.2e3011cImprove Javadoc.adaf729Describe 'BatchExecutor' and virtual thread usage.- Additional commits viewable in compare view
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
Depends on #2492
Superseded by #2795.