Skip to content

Update jenetics.version to v8.2.0#143

Merged
beatngu13 merged 1 commit intomasterfrom
renovate/jenetics.version
Apr 14, 2025
Merged

Update jenetics.version to v8.2.0#143
beatngu13 merged 1 commit intomasterfrom
renovate/jenetics.version

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 14, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
io.jenetics:jenetics.ext (source) 8.1.0 -> 8.2.0 age adoption passing confidence
io.jenetics:jenetics (source) 8.1.0 -> 8.2.0 age adoption passing confidence

Release Notes

jenetics/jenetics (io.jenetics:jenetics.ext)

v8.2.0

Compare Source

Improvements
  • #​889: Allow adding annotations to Cfg elements for Grammatical Evolution.
final var cfg2 = Cfg.<String>builder()
    .R("expr", rule -> rule
        .N("num", "annotation 1")
        .N("var", "annotation 2")
        .E(exp -> exp
            .T("(")
            .N("expr").N("op", 4).N("expr")
            .T(")")))
    .R("op", rule -> rule.T("+").T("-").T("*").T("/"))
    .R("var", rule -> rule.T("x").T("y"))
    .R("num", rule -> rule
        .T("0").T("1").T("2").T("3").T("4")
        .T("5").T("6").T("7").T("8").T("9")
    )
    .build();
  • #​915: Remove usage of java.security.AccessController.
  • #​921: Remove object == this "optimization" in equals methods.
  • #​923: Improve parsing performance of CsvSupport.
  • #​925: INCUBATION: Implement statistical hypothesis tester. The statistical tests for the engine classes has been stabilized and can be written in the following way.
final var observation = new RunnableObservation(
    Sampling.repeat(200_000, samples ->
        samples.add(DoubleGene.of(0, 20).doubleValue())
    ),
    Partition.of(0, 20, 20)
);
new StableRandomExecutor(seed).execute(observation);

assertThatObservation(observation).isUniform();

Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@beatngu13 beatngu13 merged commit 521146b into master Apr 14, 2025
2 checks passed
@beatngu13 beatngu13 deleted the renovate/jenetics.version branch April 14, 2025 07:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant