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_viz.py 266B

il y a 8 ans
il y a 8 ans
il y a 8 ans
12345678910111213
  1. from abp.graphstate import GraphState
  2. from abp import viz
  3. def test_viz():
  4. g = GraphState(range(4)+[100, 200])
  5. g.add_edge(0, 1)
  6. g.add_edge(1, 2)
  7. g.add_edge(2, 0)
  8. g.add_edge(0, 3)
  9. g.add_edge(100, 200)
  10. # g.remove_vop(0, 1)
  11. viz.draw(g)