7namespace Antares::Solver::Simulation
12 std::vector<double> HydroGen;
13 std::vector<double> UnsupE;
14 std::vector<double> levels;
17 inline operator std::tuple<std::vector<double>&, std::vector<double>&, std::vector<double>&>()
20 return {HydroGen, UnsupE, levels};
24RemixHydroOutput shavePeaksByRemixingHydro(
const std::vector<double>& DispatchGen,
25 const std::vector<double>& HydroGen,
26 const std::vector<double>& UnsupE,
27 const std::vector<double>& HydroPmax,
28 const std::vector<double>& HydroPmin,
32 bool reservoirManagement,
33 const std::vector<double>& inflow,
34 const std::vector<double>& overflow,
35 const std::vector<double>& pump,
36 const std::vector<double>& Spillage,
37 const std::vector<double>& DTG_MRG);
Definition shave-peaks-by-remix-hydro.h:11