~ubuntu-branches/ubuntu/wily/python-networkx/wily

« back to all changes in this revision

Viewing changes to networkx/tests/generators/bipartite.txt

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2008-03-02 01:06:32 UTC
  • mfrom: (1.2.1 upstream) (3.1.3 hardy)
  • Revision ID: james.westby@ubuntu.com-20080302010632-1lp6qe1orf59jl8b
* debian/control:
   + Replace python-setuptools with python-pkg-resources in the
     “Recommends:” since pkg_resources is now available in this
     separate package, thanks Matthias Klose (Closes: #468721).
* debian/copyright:
   + Use “© $years $name” instead of invalid “$name, $years” and
     “(C) $years, $name”, thanks to lintian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
198
198
 
199
199
>>> G=cycle_graph(6)
200
200
>>> is_bipartite(G)
201
 
True
 
 
b'\\ No newline at end of file'
 
201
True
 
202
 
 
203
>>> G=Graph({0: {7: None},1: {7: None},2: {6: None},3: {6: None},4:{5: None},5: {4: None, 7: None},6: {2: None, 3: None, 7: None},7:{0: None, 1: None, 5: None, 6: None}})
 
204
>>> is_bipartite(G)
 
205
True