Beispiel #1
0
 def test_RandomRegular():
     G = graphs.RandomRegular()
Beispiel #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)
Beispiel #3
0
 def test_RandomRegular():
     G = graphs.RandomRegular()
     needed_attributes_testing(G)