[docs]classDummyObjective(Objective):"""A simple objective that sums all environment rewards This objective is a simple pass-through objective that sums up the :class:`RewardInformation` from the latest addition to an agent's :class:`Memory`. I.e., it uses :meth:`Memory.tail` to get the latest row, and then sums all :class:`RewardInformation` objects that were stored here. I.e., ``sum(memory.tail(1).rewards)``. This can be used as a pass-through for the simpler reinforcement learning cases, in which the environment's reward is also the agent's objective function. It can also act as a simple dummy (i.e., placeholder) for a more meaningful objective function. """def__init__(self,params=None):super().__init__(params=({}ifparamsisNoneelseparams))