Exemple #1
0
 def __new__(cls, k, starting_size, n_tables):
     primes = get_n_primes_near_x(n_tables, starting_size)
     countgraph = _Countgraph(k, primes)
     class_ = _GraphLabels.__new__(cls, countgraph)
     class_.graph = countgraph
     return class_
Exemple #2
0
 def __new__(cls, k, starting_size, n_tables):
     primes = get_n_primes_near_x(n_tables, starting_size)
     countgraph = _Countgraph(k, primes)
     class_ = _GraphLabels.__new__(cls, countgraph)
     class_.graph = countgraph
     return class_
Exemple #3
0
 def __new__(cls, k, starting_size, n_tables):
     nodegraph = Nodegraph(k, starting_size, n_tables)
     graphlabels = _GraphLabels.__new__(cls, nodegraph)
     graphlabels.graph = nodegraph
     return graphlabels
Exemple #4
0
 def __new__(cls, k, starting_size, n_tables):
     nodegraph = Nodegraph(k, starting_size, n_tables)
     graphlabels = _GraphLabels.__new__(cls, nodegraph)
     graphlabels.graph = nodegraph
     return graphlabels
Exemple #5
0
 def __new__(cls, k, starting_size, n_tables):
     primes = get_n_primes_near_x(n_tables, starting_size)
     hb = _Countgraph(k, primes)
     c = _GraphLabels.__new__(cls, hb)
     c.graph = hb
     return c
Exemple #6
0
 def __new__(cls, k, starting_size, n_tables):
     hb = Nodegraph(k, starting_size, n_tables)
     c = _GraphLabels.__new__(cls, hb)
     c.graph = hb
     return c
 def __new__(cls, k, starting_size, n_tables):
     primes = get_n_primes_near_x(n_tables, starting_size)
     hb = _Countgraph(k, primes)
     c = _GraphLabels.__new__(cls, hb)
     c.graph = hb
     return c
 def __new__(cls, k, starting_size, n_tables):
     hb = Nodegraph(k, starting_size, n_tables)
     c = _GraphLabels.__new__(cls, hb)
     c.graph = hb
     return c