Skip to content

v0.1.0

Compare
Choose a tag to compare
@perimosocordiae perimosocordiae released this 21 Jul 19:19
· 28 commits to master since this release

This release only includes 14 commits, but it restructures a lot of code and made some big breaking API changes.

Big changes:

  • foo.matrix(dense=True, csr=True) is now written as foo.matrix('dense', 'csr'). This affects a lot of code, but it needed to be fixed.
  • The dataset code from the graphs.generators module has been split out into a new module, graphs.datasets.
  • The random_graph function has been moved from graphs.construction to graphs.generators.
  • Two new functions for creating graphs have been added: chain_graph and lattice_graph.
  • The defaults for foo.plot() are now directed=False and weighted=False, because that's what most of the use-cases are.
  • The Graph object has two new methods: bicolor_spectral and isograph.