508545f2c9a982a38a243ec95c7a5cdd266ed358,pygsp/tests/test_graphs.py,TestCase,test_degree,#TestCase#,46

Before Change


        d = 4*np.ones([4])
        dw = np.sum(W,axis=1).squeeze()
        self.assertAlmostEqual(np.linalg.norm(G.d-d),0)
        self.assertAlmostEqual(np.linalg.norm(G.dw-dw),0)

        G = graphs.Sensor()
        A = G.W>0
        d = np.sum(A.toarray(),axis=1).squeeze()

After Change


        self.assertEqual(kj.shape[0], G.Ne)

    def test_degree(self):
        W = 0.3 * (np.ones((4, 4)) - np.diag(4 * [1]))
        G = graphs.Graph(W)
        A = np.ones(W.shape) - np.diag(np.ones(4))
        np.testing.assert_allclose(G.A.toarray(), A)
        np.testing.assert_allclose(G.d, 3 * np.ones([4]))
        np.testing.assert_allclose(G.dw, 3 * 0.3)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: epfl-lts2/pygsp
Commit Name: 508545f2c9a982a38a243ec95c7a5cdd266ed358
Time: 2017-11-23
Author: michael.defferrard@epfl.ch
File Name: pygsp/tests/test_graphs.py
Class Name: TestCase
Method Name: test_degree


Project Name: cornellius-gp/gpytorch
Commit Name: 398b5b1b7ce17ad3ea40e76847ecaeb881e79ed6
Time: 2017-08-25
Author: gpleiss@gmail.com
File Name: test/functions/lazy_toeplitz/toeplitz_mvn_kl_divergence_test.py
Class Name:
Method Name: test_toeplitz_mvn_kl_divergence_backward


Project Name: nipy/dipy
Commit Name: d1269c95e80733247cffb4d608dfb52c3dfa8d59
Time: 2013-12-23
Author: mrbago@gmail.com
File Name: dipy/tracking/tests/test_utils.py
Class Name:
Method Name: test_connectivity_matrix