Conversation
…ery scenarios (#1210) Adds three new BenchmarkScenario entries to BENCHMARK_SCENARIOS, bumping the array size from 149 to 152, and updates the scenario count assertion in src/gym/tests_scenarios.rs: - multi-file-rename-public-api (Refactoring) - plan-decomposition-vague-goal (SessionQuality) - failure-recovery-dirty-worktree (Debugging) Existing class_specific_checks handlers for Refactoring, SessionQuality, and Debugging already cover the evidence ids these scenarios produce, so no new check ids were needed. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Advances issue #1210 by adding three new gym benchmark scenarios in
src/gym/scenarios.rs:multi-file-rename-public-api— Refactoring classplan-decomposition-vague-goal— SessionQuality classfailure-recovery-dirty-worktree— Debugging classThe
BENCHMARK_SCENARIOSarray size bumps from 149 to 152, and the count assertion insrc/gym/tests_scenarios.rsis updated accordingly. Existingclass_specific_checkshandlers for Refactoring, SessionQuality, and Debugging already cover the evidence ids these scenarios produce, so no new check ids were required.Verified locally with
cargo check --lib(clean) andcargo test --lib -- gym(418 passed, 0 failed).Refs #1210.