Home | History | Annotate | Download | only in tests

Lines Matching refs:GW

29             GW=to_networkx_graph(dod)
30 assert_equal(sorted(G.nodes()), sorted(GW.nodes()))
31 assert_equal(sorted(G.edges()), sorted(GW.edges()))
54 GW=to_networkx_graph(dod)
55 assert_equal(sorted(G.nodes()), sorted(GW.nodes()))
56 assert_equal(sorted(G.edges()), sorted(GW.edges()))
66 GW=to_networkx_graph(dod, create_using=DiGraph())
67 assert_equal(sorted(G.nodes()), sorted(GW.nodes()))
68 assert_equal(sorted(G.edges()), sorted(GW.edges()))
87 GW=to_networkx_graph(dod,create_using=Graph())
88 assert_equal(sorted(G.nodes()), sorted(GW.nodes()))
89 assert_equal(sorted(G.edges()), sorted(GW.edges()))
101 GW=to_networkx_graph(dol,create_using=Graph())
102 assert_equal(sorted(G.nodes()), sorted(GW.nodes()))
103 assert_equal(enone, sorted(GW.edges(data=True)))
129 GW=to_networkx_graph(dod,create_using=Graph())
130 assert_equal(sorted(XGS.nodes()), sorted(GW.nodes()))
131 assert_equal(sorted(XGS.edges()), sorted(GW.edges()))
144 GW=to_networkx_graph(dol,create_using=Graph())
145 assert_equal(sorted(XGS.nodes()), sorted(GW.nodes()))
146 assert_equal(enone, sorted(GW.edges(data=True)))
158 GW=to_networkx_graph(dod,create_using=MultiGraph(),multigraph_input=True)
159 assert_equal(sorted(XGM.nodes()), sorted(GW.nodes()))
160 assert_equal(sorted(XGM.edges()), sorted(GW.edges()))
183 GW=to_networkx_graph(dol,create_using=MultiGraph())
184 assert_equal(sorted(G.nodes()), sorted(GW.nodes()))
185 assert_equal(sorted(G.edges()), sorted(GW.edges()))