Skip to content

Commit

Permalink
Place CSR after hydro remix [ANT-2070] (#2438)
Browse files Browse the repository at this point in the history
  • Loading branch information
flomnes authored Nov 19, 2024
1 parent 883ed88 commit c257cb9
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,20 @@ AdqPatchPostProcessList::AdqPatchPostProcessList(const AdqPatchParams& adqPatchP
{
post_process_list.push_back(
std::make_unique<DispatchableMarginPostProcessCmd>(problemeHebdo_, thread_number_, areas));
// Here a post process particular to adq patch
post_process_list.push_back(std::make_unique<CurtailmentSharingPostProcessCmd>(adqPatchParams,
problemeHebdo_,
areas,
thread_number_));

post_process_list.push_back(
std::make_unique<HydroLevelsUpdatePostProcessCmd>(problemeHebdo_, areas, false, false));
post_process_list.push_back(std::make_unique<RemixHydroPostProcessCmd>(problemeHebdo_,
areas,
sheddingPolicy,
splxOptimization,
thread_number));

// Here a post process particular to adq patch
post_process_list.push_back(std::make_unique<CurtailmentSharingPostProcessCmd>(adqPatchParams,
problemeHebdo_,
areas,
thread_number_));
// Here a post process particular to adq patch
post_process_list.push_back(
std::make_unique<DTGmarginForAdqPatchPostProcessCmd>(problemeHebdo_, areas, thread_number));
Expand Down

0 comments on commit c257cb9

Please sign in to comment.