def __add__(self, other):
        result = self.create_new_instance(self)

        result._states = torch.concatenate((self.state, other.state))
        result._actions = torch.concatenate((self.action, other.action))