Beispiel #1
0
    def test_create_graph(self):
        shape = (2, 3)
        nl = ((-1, 0), (0, -1), (0, 1), (1, 0))
        g1 = hg.RegularGraph2d(hg.EmbeddingGrid2d(shape), nl)

        g2 = hg.get_4_adjacency_implicit_graph(shape)
        g3 = hg.get_8_adjacency_implicit_graph(shape)

        for g in (g1, g2, g3):
            self.assertTrue(g.num_vertices() == 6)
Beispiel #2
0
    def test_vertices_iterator(self):
        shape = (2, 3)
        g1 = hg.get_4_adjacency_implicit_graph(shape)
        g2 = hg.get_8_adjacency_implicit_graph(shape)

        vref = [0, 1, 2, 3, 4, 5];

        for g in (g1, g2):
            vtest = [];

            for v in g.vertices():
                vtest.append(v)

            self.assertTrue(vtest == vref)
Beispiel #3
0
    def test_out_edge_iterator8(self):
        shape = (2, 3)
        g = hg.get_8_adjacency_implicit_graph(shape)

        ref = [[(0, 1), (0, 3), (0, 4)],
               [(1, 0), (1, 2), (1, 3), (1, 4), (1, 5)],
               [(2, 1), (2, 4), (2, 5)], [(3, 0), (3, 1), (3, 4)],
               [(4, 0), (4, 1), (4, 2), (4, 3), (4, 5)],
               [(5, 1), (5, 2), (5, 4)]]

        for v in g.vertices():
            res = []
            for e in g.out_edges(v):
                res.append(e)
            self.assertTrue(res == ref[v])
Beispiel #4
0
    def test_as_explicit_graph(self):
        shape = (2, 3)
        g_imp = hg.get_4_adjacency_implicit_graph(shape)

        g_exp = g_imp.as_explicit_graph()

        self.assertTrue(
            TestRegularGraph.graph_implicit_explicit_equal(g_imp, g_exp))

        g_imp = hg.get_8_adjacency_implicit_graph(shape)

        g_exp = g_imp.as_explicit_graph()

        self.assertTrue(
            TestRegularGraph.graph_implicit_explicit_equal(g_imp, g_exp))
Beispiel #5
0
    def test_create_graph(self):
        shape = (2, 3)
        nl = ((-1, 0), (0, -1), (0, 1), (1, 0))
        g1 = hg.RegularGraph2d(hg.EmbeddingGrid2d(shape), nl)

        g2 = hg.get_4_adjacency_implicit_graph(shape)
        g3 = hg.get_8_adjacency_implicit_graph(shape)

        for g in (g1, g2, g3):
            self.assertTrue(g.num_vertices() == 6)

        self.assertTrue(np.all(g1.shape() == shape))
        self.assertTrue(np.all(g1.neighbour_list() == nl))

        g4 = hg.RegularGraph2d(g1.shape(), g1.neighbour_list())
        self.assertTrue(np.all(g4.shape() == shape))
        self.assertTrue(np.all(g4.neighbour_list() == nl))