Lines Matching refs:Ga
64 GraphA Ga(8); in test_isomorphism() local
65 add_edge(a, d, Ga); in test_isomorphism()
66 add_edge(a, h, Ga); in test_isomorphism()
67 add_edge(b, c, Ga); in test_isomorphism()
68 add_edge(b, e, Ga); in test_isomorphism()
69 add_edge(c, f, Ga); in test_isomorphism()
70 add_edge(d, a, Ga); in test_isomorphism()
71 add_edge(d, h, Ga); in test_isomorphism()
72 add_edge(e, b, Ga); in test_isomorphism()
73 add_edge(f, b, Ga); in test_isomorphism()
74 add_edge(f, e, Ga); in test_isomorphism()
75 add_edge(g, d, Ga); in test_isomorphism()
76 add_edge(g, f, Ga); in test_isomorphism()
77 add_edge(h, c, Ga); in test_isomorphism()
78 add_edge(h, g, Ga); in test_isomorphism()
96 std::vector< std::size_t > in_degree_A(num_vertices(Ga)); in test_isomorphism()
97 boost::detail::compute_in_degree(Ga, &in_degree_A[0]); in test_isomorphism()
103 &in_degree_A[0], Ga); in test_isomorphism()
108 num_vertices(Ga)); in test_isomorphism()
110 bool ret = isomorphism(Ga, Gb, &f[0], invariantA, invariantB, in test_isomorphism()
111 (invariantB.max)(), get(vertex_index, Ga), get(vertex_index, Gb)); in test_isomorphism()
114 for (std::size_t i = 0; i < num_vertices(Ga); ++i) in test_isomorphism()
117 BOOST_TEST(verify_isomorphism(Ga, Gb, &f[0])); in test_isomorphism()