Esempio n. 1
0
 def test_RandomRegular():
     G = graphs.RandomRegular()
Esempio n. 2
0
 def test_randomregular(self):
     k = 6
     G = graphs.RandomRegular(k=k)
     np.testing.assert_equal(G.W.sum(0), k)
     np.testing.assert_equal(G.W.sum(1), k)
Esempio n. 3
0
 def test_RandomRegular():
     G = graphs.RandomRegular()
     needed_attributes_testing(G)