-
Notifications
You must be signed in to change notification settings - Fork 13
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
Bump core 610 #569
Bump core 610 #569
Conversation
Signed-off-by: Sophie Frasnedo <[email protected]>
Signed-off-by: Sophie Frasnedo <[email protected]>
Signed-off-by: Sophie Frasnedo <[email protected]>
Signed-off-by: Sophie Frasnedo <[email protected]>
…Transformer.Side Signed-off-by: Sophie Frasnedo <[email protected]>
Signed-off-by: Sophie Frasnedo <[email protected]>
Signed-off-by: Sophie Frasnedo <[email protected]>
… readSubElements (1 test failing) Signed-off-by: Sophie Frasnedo <[email protected]>
Signed-off-by: Florian Dupuy <[email protected]>
Signed-off-by: Florian Dupuy <[email protected]>
Signed-off-by: Florian Dupuy <[email protected]>
Signed-off-by: Florian Dupuy <[email protected]>
Signed-off-by: Florian Dupuy <[email protected]>
network-area-diagram/src/main/java/com/powsybl/nad/build/iidm/NetworkGraphBuilder.java
Outdated
Show resolved
Hide resolved
network-area-diagram/src/main/java/com/powsybl/nad/build/iidm/NetworkGraphBuilder.java
Outdated
Show resolved
Hide resolved
Signed-off-by: Sophie Frasnedo <[email protected]>
Signed-off-by: Sophie Frasnedo <[email protected]>
…agram into bump_core_610
} | ||
|
||
private int getNextSideNum(int sideNum, int steps) { | ||
return (sideNum + steps) % 3 == 0 ? 3 : (sideNum + steps) % 3; |
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.
could be simplified by return (sideNum + steps + 2) % 3 + 1;
but not sure if this is understandable...?
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.
It is shrewd! And I think it is understandable (one can simply check the formula with examples if needed).
This reverts commit 35551ec. Signed-off-by: Florian Dupuy <[email protected]>
This reverts commit 67a07d9. Signed-off-by: Florian Dupuy <[email protected]>
Signed-off-by: Sophie Frasnedo <[email protected]>
Kudos, SonarCloud Quality Gate passed! |
Please check if the PR fulfills these requirements
Does this PR already have an issue describing the problem?
No
What kind of change does this PR introduce?
Bump to powsybl-core 6.1.0