[docs]def__init__(self,actions_per_round:List[int]):""" A CRD strategy which adapts in function of a moving average of the contributions of the rest of the group. Parameters ---------- actions_per_round: List[int] Defines the action which this strategy will play in every round. If you change the number of rounds of the game, you should redefine this list, otherwise there will be an exception!! """super().__init__()self.actions_per_round=actions_per_round