-
Notifications
You must be signed in to change notification settings - Fork 9
Feature/penalty as effect #486
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
f8efba7
implemented the migration of Penalty to be a standard Effect. Here's …
FBumann f65e4a2
Allow user defined enalty Effect
FBumann 81e7212
Update CHANGELOG.md
FBumann 9b04e44
Update CHANGELOG.md
FBumann 4936fdd
Update CHANGELOG.md and docs
FBumann 57b371e
Fix penöaty test
FBumann 8992328
Remove special treatment for Penalty effect in IO
FBumann afcb118
Update CHANGELOG.md
FBumann 5d83b61
Fix aggregation.py and its penalties
FBumann bb7ba0e
Fix indices
FBumann 076dac8
Revert some changes
FBumann 475b6c9
Verify that Penalty is not set as the objective
FBumann 67d13fb
Update docs a bit
FBumann 161d893
Update docs a bit
FBumann b80dcbc
Update docs a bit
FBumann 31637c7
Fix test
FBumann f45dca7
Merge branch 'main' into feature/penalty-as-effect
FBumann 88707ce
Update CHANGELOG.md
FBumann ab3f801
Improve main results penalty display
FBumann fbe30a8
Update CHANGELOG.md
FBumann 2f7c4fc
Merge branch 'main' into feature/penalty-as-effect
FBumann a9c11db
Merge branch 'main' into feature/penalty-as-effect
FBumann e3b2163
Revert some minimla changes from merge
FBumann File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
Verify API signatures and clarify penalty semantics in code example.
The code examples reference APIs (
effects_per_switch_on,add_share_to_effects) and constants (fx.PENALTY_EFFECT_LABEL) that need verification. Additionally, the comment on Line 156 stating "just add a metric to switching on operations" is vague—clarify what "metric" means and explicitly state this creates a penalty cost (rather than an alternative effect type).To verify these APIs match the actual implementation:
Regarding the code comment on Line 156, clarify the intent:
Also applies to: 164-172, 201-201
🏁 Script executed:
Length of output: 31147
Clarify vague terminology in code comment; API signatures verified as correct.
The
effects_per_switch_onparameter,add_share_to_effectsmethod, andfx.PENALTY_EFFECT_LABELconstant are all correctly implemented and publicly accessible. The code example is valid. However, the comment on Line 156 uses unclear terminology—replace "metric" with explicit explanation that this specifies a penalty cost per switch-on:Also applies to: 164-172, 201-201
🤖 Prompt for AI Agents