Anders and Briegel in Python
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

16 satır
234B

  1. from nose import with_setup
  2. import abp
  3. def setup():
  4. global g
  5. g = abp.GraphRegister(10)
  6. g.add_edge(0,1)
  7. g.add_edge(1,2)
  8. g.add_edge(2,0)
  9. @with_setup(setup)
  10. def test_adding():
  11. s = abp.Stabilizer(g)
  12. print s