-
Notifications
You must be signed in to change notification settings - Fork 9
Feature/v3/feature/308 rename effect domains #365
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
Changes from all commits
809b297
d69b1ca
8e44b93
3966051
6d5b03f
ddcb6be
de61895
115f3a0
4a82574
9f4c1f6
5fe2c64
09bdeec
3c0db76
2f817d1
fb0af15
97b6295
2cc5e4c
51bbe4e
4705a4f
7dc51aa
b4d5e8b
f5fbfc6
f6cfd6b
b071671
02b8859
59b5f22
06f20e6
4907550
62cf3a4
7246e3c
9ddc509
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -145,9 +145,9 @@ | |
| comparison_main = comparison[ | ||
| [ | ||
| 'Duration [s]', | ||
| 'costs|total', | ||
| 'costs(invest)|total', | ||
| 'costs(operation)|total', | ||
| 'costs', | ||
| 'costs(nontemporal)', | ||
| 'costs(temporal)', | ||
|
Comment on lines
+148
to
+150
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chainAligns with renamed effect domains; please verify keys exist in results The switch to 'costs', 'costs(nontemporal)', and 'costs(temporal)' matches the new terminology. Please confirm these variables are present in results for both Combined and Two-stage modes. 🏁 Script executed: #!/bin/bash
# Inspect available data variables in both solutions to verify keys
rg -nP -C2 "results\.solution" --type=py
# Optionally print example outputs if a small fixture exists
rg -nP "costs\(temporal\)|costs\(nontemporal\)" --type=py -C2Length of output: 20492 Update temporal cost key in example Replace 🤖 Prompt for AI Agents |
||
| 'BHKW2(Q_fu)|size', | ||
| 'Kessel(Q_fu)|size', | ||
| 'Speicher|size', | ||
|
|
||
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
Confirm exact legacy parameter names ('minimum_invest' vs 'minimum_investment')
The changelog lists minimum_investment/maximum_investment; earlier notes sometimes reference minimum_invest/maximum_invest. Ensure the deprecation mapping and docs reflect the actual legacy names used in the API.
🏁 Script executed:
Length of output: 33793
Use correct legacy names (
minimum_invest/maximum_invest) in CHANGELOG.mdChange the entries from
minimum_investment/maximum_investmenttominimum_invest/maximum_investto match the actual deprecated parameters.🤖 Prompt for AI Agents