Skip to content

Commit 3f1d1e4

Browse files
hmgaudeckerclaude
andcommitted
bench: unpack 3-tuple from get_benchmark_params
aca-model's `get_benchmark_params` returns three values (likely a moments tuple alongside the two pre-existing entries); the benchmark file was stuck on the older 2-tuple shape. aca-model's own `test_benchmark.py` runs against the up-to-date in-tree helper, so the drift only surfaces here once pylcm's benchmark CI pulls a fresh aca-model. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 6e187a7 commit 3f1d1e4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

benchmarks/bench_aca_baseline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def _build() -> tuple[object, object, object]:
7171
n_subjects=_N_SUBJECTS,
7272
pref_type_grid=DiscreteGrid(BenchmarkPrefType),
7373
)
74-
_, model_params = get_benchmark_params(model=model)
74+
_, _, model_params = get_benchmark_params(model=model)
7575
initial_conditions = get_benchmark_initial_conditions(
7676
model=model, n_subjects=_N_SUBJECTS, seed=0
7777
)

0 commit comments

Comments
 (0)