From f6665b04cdf4a5cd1fb795564e17e16b3988011a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Oct 2025 19:06:16 +0000 Subject: [PATCH 1/4] Bump crate-ci/typos from 1.36.3 to 1.37.3 Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.36.3 to 1.37.3. - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](https://github.com/crate-ci/typos/compare/v1.36.3...v1.37.3) --- updated-dependencies: - dependency-name: crate-ci/typos dependency-version: 1.37.3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/basic.yml | 2 +- .github/workflows/extra.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml index a36035051..59aa477b2 100644 --- a/.github/workflows/basic.yml +++ b/.github/workflows/basic.yml @@ -115,4 +115,4 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v5 - - uses: crate-ci/typos@v1.36.3 + - uses: crate-ci/typos@v1.37.3 diff --git a/.github/workflows/extra.yml b/.github/workflows/extra.yml index 48819ae8c..26ba757f0 100644 --- a/.github/workflows/extra.yml +++ b/.github/workflows/extra.yml @@ -144,4 +144,4 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v5 - - uses: crate-ci/typos@v1.36.3 + - uses: crate-ci/typos@v1.37.3 From b7b539f6d590f04de2d9a96bd9d8db798060a080 Mon Sep 17 00:00:00 2001 From: Jeffrey Larson Date: Mon, 6 Oct 2025 14:29:38 -0500 Subject: [PATCH 2/4] typo --- libensemble/gen_funcs/persistent_sampling.py | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/libensemble/gen_funcs/persistent_sampling.py b/libensemble/gen_funcs/persistent_sampling.py index 401ccdaa9..375d7f438 100644 --- a/libensemble/gen_funcs/persistent_sampling.py +++ b/libensemble/gen_funcs/persistent_sampling.py @@ -30,7 +30,7 @@ def _get_user_params(user_specs): @persistent_input_fields(["sim_id"]) -@output_data([("x", float, (2,))]) # The dimesion of 2 is a default and can be overwritten +@output_data([("x", float, (2,))]) # The dimension of 2 is a default and can be overwritten def persistent_uniform(_, persis_info, gen_specs, libE_info): """ This generation function always enters into persistent mode and returns diff --git a/pyproject.toml b/pyproject.toml index 68d5654da..80535d8cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -134,6 +134,7 @@ HPE = "HPE" RO = "RO" lst = "lst" noy = "noy" +inpt = "inpt" [tool.typos.files] extend-exclude = ["*.bib", "*.xml", "docs/nitpicky"] From 95dd27569eb9b35dce25c84c93b91b496c9e90ef Mon Sep 17 00:00:00 2001 From: Jeffrey Larson Date: Mon, 6 Oct 2025 14:30:16 -0500 Subject: [PATCH 3/4] typo --- libensemble/gen_funcs/persistent_gpCAM.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libensemble/gen_funcs/persistent_gpCAM.py b/libensemble/gen_funcs/persistent_gpCAM.py index 05b08bb5e..262ca2d6b 100644 --- a/libensemble/gen_funcs/persistent_gpCAM.py +++ b/libensemble/gen_funcs/persistent_gpCAM.py @@ -158,7 +158,7 @@ def persistent_gpCAM(H_in, persis_info, gen_specs, libE_info): """ This generation function constructs a global surrogate of `f` values. It is a batched method that produces a first batch uniformly random from (lb, ub). - On subequent iterations, it calls an optimization method to produce the next + On subsequent iterations, it calls an optimization method to produce the next batch of points. This optimization might be too slow (relative to the simulation evaluation time) for some use cases. From 1a68569cea248a34fe91d91fbf89722878b14725 Mon Sep 17 00:00:00 2001 From: Jeffrey Larson Date: Mon, 6 Oct 2025 14:33:16 -0500 Subject: [PATCH 4/4] typo --- libensemble/gen_funcs/persistent_ax_multitask.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libensemble/gen_funcs/persistent_ax_multitask.py b/libensemble/gen_funcs/persistent_ax_multitask.py index ede50e46b..0a2e07f20 100644 --- a/libensemble/gen_funcs/persistent_ax_multitask.py +++ b/libensemble/gen_funcs/persistent_ax_multitask.py @@ -376,9 +376,9 @@ def max_utility_from_GP(n, m, gr, hifi_task): f, cov = m.predict(obsf) # Compute expected utility u = -np.array(f["hifi_metric"]) - best_arm_indx = np.flip(np.argsort(u))[:n] + best_arm_index = np.flip(np.argsort(u))[:n] gr_new = GeneratorRun( - arms=[gr.arms[i] for i in best_arm_indx], + arms=[gr.arms[i] for i in best_arm_index], weights=[1.0] * n, ) return gr_new