-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CSA] [Import] Reorder usage rules definition (#972)
* Add usage rules by constraining order Signed-off-by: Thomas Bouquet <thomas.bouquet@rte-france.com> * Unit tests for usage method helpers Signed-off-by: Thomas Bouquet <thomas.bouquet@rte-france.com> * Remove useless field in query Signed-off-by: Thomas Bouquet <thomas.bouquet@rte-france.com> * Add comprehensive tests with CSA profiles Signed-off-by: Thomas Bouquet <thomas.bouquet@rte-france.com> * Update after comments Signed-off-by: Thomas Bouquet <thomas.bouquet@rte-france.com> --------- Signed-off-by: Thomas Bouquet <thomas.bouquet@rte-france.com> Signed-off-by: belthlemar <martin.belthle@rte-france.com>
- Loading branch information
1 parent
d9d247c
commit 0980ac0
Showing
24 changed files
with
784 additions
and
265 deletions.
There are no files selected for viewing
This file contains 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 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 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 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
17 changes: 17 additions & 0 deletions
17
...ao/data/craccreation/creator/csaprofile/craccreator/remedialaction/AssociationStatus.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* Copyright (c) 2024, RTE (http://www.rte-france.com) | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
*/ | ||
package com.powsybl.openrao.data.craccreation.creator.csaprofile.craccreator.remedialaction; | ||
|
||
import com.powsybl.openrao.data.craccreation.creator.csaprofile.craccreator.CsaProfileConstants; | ||
|
||
/** | ||
* @author Thomas Bouquet <thomas.bouquet at rte-france.com> | ||
*/ | ||
public record AssociationStatus(boolean isValid, | ||
CsaProfileConstants.ElementCombinationConstraintKind elementCombinationConstraintKind, | ||
String statusDetails) { | ||
} |
Oops, something went wrong.