Anders and Briegel in Python
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
307B

  1. from graph import Graph
  2. def test_graph():
  3. g = Graph(3)
  4. g.add_edge(0,1)
  5. g.add_edge(1,2)
  6. g.add_edge(2,0)
  7. assert g.vertices[0]==set([1,2])
  8. g.del_edge(0,1)
  9. assert g.vertices[0]==set([2])
  10. el = g.edgelist()
  11. assert (1,2) in el
  12. assert not (0,1) in el
  13. assert len(el)==2