-
Notifications
You must be signed in to change notification settings - Fork 25
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
Implement latest CSR comments #825
Implement latest CSR comments #825
Conversation
…o feature/keep-track-with-rte-develop
…/fix/execution-info-format Clarify execution-info.ini file
…/feature/cxx-17 Bump to CXX 17 from CXX 11
…#820) * execution_info.ini : add OR-Tools used & solver * PR remarks
…#793) * Fix wrong number of cores + code de-duplication * PR remarks + small refactor (template)
Issue-66 comment implementation
KEEP TRACK WITH RTE DEVELOP
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.
Merge branch develop (there should be no conflicts) + apply minor remarks
src/solver/simulation/economy.h
Outdated
void solveCSR(Variable::State& state, uint numSpace, uint week); | ||
private: |
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.
void solveCSR(Variable::State& state, uint numSpace, uint week); | |
private: | |
private: | |
void solveCSR(Variable::State& state, uint numSpace, uint week); |
std::unique_ptr<PROBLEME_POINT_INTERIEUR> Probleme | ||
= buildInteriorPointProblem(ProblemeAResoudre); |
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.
std::unique_ptr<PROBLEME_POINT_INTERIEUR> Probleme | |
= buildInteriorPointProblem(ProblemeAResoudre); | |
auto Probleme | |
= buildInteriorPointProblem(ProblemeAResoudre); |
@@ -505,8 +505,6 @@ struct AdequacyPatchParameters | |||
float ThresholdDisplayLocalMatchingRuleViolations; |
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.
Use double for ThresholdInitiateCurtailmentSharingRule
and ThresholdDisplayLocalMatchingRuleViolations
{ | ||
std::unique_ptr<PROBLEME_POINT_INTERIEUR> Probleme(new PROBLEME_POINT_INTERIEUR()); |
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.
std::unique_ptr<PROBLEME_POINT_INTERIEUR> Probleme(new PROBLEME_POINT_INTERIEUR()); | |
auto Probleme = std::make_unique<PROBLEME_POINT_INTERIEUR>(); |
You need to merge branch develop
for that, since it contains #779. This feature is only available from C++17.
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.
Can you remove saveIntermediateResults
?
CSR comments implementation update
d49872e
into
AntaresSimulatorTeam:feature/do-not-merge-csr-generate-executables
Implementation of RTE comments on CSR dev solution.
Issue 66 on RTEi repository.