Anders and Briegel in Python
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

test_graph.py 351B

il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
123456789101112131415161718
  1. from graph import *
  2. def test_graph():
  3. g, v = graph()
  4. add_edge(g, 0,1)
  5. add_edge(g, 1,2)
  6. add_edge(g, 2,0)
  7. assert g[0]==set([1,2])
  8. del_edge(g, 0,1)
  9. assert g[0]==set([2])
  10. el = edgelist(g)
  11. assert (1,2) in el
  12. assert not (0,1) in el
  13. assert len(el)==2
  14. assert has_edge(g, 1,2)
  15. assert not has_edge(g, 0,1)