[docs]classMultiObjectiveSum(Reward):""" Weighted sum of multiple objectives: *comfort*, and *over-consumption*. The reward is equal to ``0.2 * comfort + 0.8 * overconsumption``, where ``comfort`` refers to the reward of :py:class:`.Comfort`, and ``overconsumption`` refers to the reward of :py:class:`.OverConsumption`. The coefficients (``0.2`` and ``0.8``) can be configured in the constructor. Note that, in this case, the sum of coefficients *should* be equal to ``1``, in order to have a weighted average, but this is not strictly mandatory. """name:str