def __init__()

in SyntheticDataGenerators.py [0:0]


    def __init__(self, length, alpha, beta, *args, **kwargs):
        super().__init__(**kwargs)  # need to cooperate with other classes for multiple inheritance
        self.size = length
        self.alpha = alpha
        self.beta = beta
        self.atoms = []
        self.roots = set()
        self.nclusters = 0