def test_RandomRegular(): G = graphs.RandomRegular()
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)
def test_RandomRegular(): G = graphs.RandomRegular() needed_attributes_testing(G)