pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/math/py-networkx Update py-networkx to 1.6.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f592149512d1
branches:  trunk
changeset: 604692:f592149512d1
user:      obache <obache%pkgsrc.org@localhost>
date:      Sat Jun 02 13:19:17 2012 +0000

description:
Update py-networkx to 1.6.
Based on PR 46506 by Wen Heping.
* let to register egg-info.
* marked as incompatible with python 2.5, as new features in 1.3.
  but not marked as compatible with 3.x, one file will not be compiled well
  both 3.1 and 3.2.

Lease Log:

Networkx-1.6

Release date: 20 November 2011

Highlights

New functions for finding articulation points, generating random bipartite
graphs, constructing adjacency matrix representations, forming graph products,
computing assortativity coefficients, measuring subgraph centrality and
communicability, finding k-clique communities, and writing JSON format output.

New examples for drawing with D3 Javascript library, and ordering matrices with
the Cuthill-McKee algorithm.

More memory efficient implementation of current-flow betweenness and new
approximation algorithms for current-flow betweenness and shortest-path
betweenness.

Simplified handling of "weight" attributes for algorithms that use
weights/costs/values. See Version 1.6 notes and API changes.

Updated all code to work with the PyPy Python implementation http://pypy.org
which produces faster performance on many algorithms.

For full details of the tickets closed for this release (added features and bug
fixes) see: https://networkx.lanl.gov/trac/query?status=closed&group=milestone&milestone=networkx-1.6

API Changes

See Version 1.6 notes and API changes:
        http://networkx.lanl.gov/reference/api_1.6.html

Networkx-1.5

Release date: 4 June 2011

For full details of the tickets closed for this release see: https://networkx.lanl.gov/trac/query?status=closed&group=milestone&milestone=networkx-1.5

Highlights

New features

        * Algorithms for generating and analyzing bipartite graphs
        * Maximal independent set algorithm
        * Erd?s-Gallai graphical degree sequence test
        * Negative edge cycle test
        * More memory efficient Dijkstra path length with cutoff parameter
        * Weighted clustering coefficient
        * Read and write version 1.2 of GEXF reader format
        * Neighbor degree correlation that handle subsets of nodes
        * In-place node relabeling
        * Many `weighted' graph algorithms now take optional parameter to use
          specified edge attribute (default=`weight') (ticket 509)
        * Test for distance regular graphs
        * Fast directed Erd?s-Renyi graph generator
        * Fast expected degree graph generator
        * Navigable small world generator
        * Waxman model generator
        * Geographical threshold graph generator
        * Karate Club, Florentine Families, and Davis' Women's Club graphs

API Changes
See Version 1.5 notes and API changes
        http://networkx.lanl.gov/reference/api_1.5.html

Bug fixes
        * Fix edge handling for multigraphs in networkx/graphviz interface
          (ticket 507)
        * Update networkx/pydot interface for new versions of pydot
          (ticket 506), (ticket 535)
        * Fix negative cycle handling in Bellman-Ford (ticket 502)
        * Write more attributes with GraphML and GML formats (ticket 480)
        * Handle white space better in read_edgelist (ticket 513)
        * Better parsing of Pajek format files (ticket 524) (ticket 542)
        * Isolates functions work with directed graphs (ticket 526)
        * Faster conversion to numpy matrices (ticket 529)
        * Add graph[`name'] and use properties to access Graph.name (ticket 544)
        * Topological sort confused None and 0 (ticket 546)
        * GEXF writer mishandled weight=0 (ticket 550)
        * Speedup in SciPy version of PageRank (ticket 554)
        * Numpy PageRank node order incorrect + speedups (ticket 555)

Networkx-1.4

Release date: 23 January 2011

New features
        * k-shell,k-crust,k-corona
        * read GraphML files from yEd
        * read/write GEXF format files
        * find cycles in a directed graph
        * DFS and BFS algorithms
        * chordal graph functions
        * Prim's algorithm for minimum spanning tree
        * r-ary tree generator
        * rich club coefficient
        * NumPy matrix version of Floyd's algorithm for all-pairs shortest path
        * read GIS shapefiles
        * functions to get and set node and edge attributes
        * and more, see https://networkx.lanl.gov/trac/query?status=closed&group=milestone&milestone=networkx-1.4

API Changes
        * gnp_random_graph() now takes a directed=True|False keyword instead of
          create_using
        * gnm_random_graph() now takes a directed=True|False keyword instead of
          create_using

Bug fixes
        * see https://networkx.lanl.gov/trac/query?status=closed&group=milestone&milestone=networkx-1.4

Networkx-1.3

Release date: 28 August 2010

See: https://networkx.lanl.gov/trac/timeline

New features
        * Works with Python versions 2.6, 2.7, 3.1, and 3.2 (but not 2.4 and 2.5).
        * Minimum cost flow algorithms
        * Bellman-Ford shortest paths
        * GraphML reader and writer
        * More exception/error types
        * Updated many tests to unittest style. Run with:
          "import networkx; networkx.test()" (requires nose testing package)
        * and more, see https://networkx.lanl.gov/trac/query?status=closed&group=milestone&milestone=networkx-1.3

API Changes
        * minimum_spanning_tree() now returns a NetworkX Graph (a tree or forest)

Bug fixes
        * see https://networkx.lanl.gov/trac/query?status=closed&group=milestone&milestone=networkx-1.3

diffstat:

 math/py-networkx/Makefile |    9 +-
 math/py-networkx/PLIST    |  411 ++++++++++++++++++++++++++++++++++++++++++---
 math/py-networkx/distinfo |    8 +-
 3 files changed, 391 insertions(+), 37 deletions(-)

diffs (truncated from 728 to 300 lines):

diff -r df9161058e5c -r f592149512d1 math/py-networkx/Makefile
--- a/math/py-networkx/Makefile Sat Jun 02 12:31:17 2012 +0000
+++ b/math/py-networkx/Makefile Sat Jun 02 13:19:17 2012 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.5 2010/08/27 03:09:18 gls Exp $
+# $NetBSD: Makefile,v 1.6 2012/06/02 13:19:17 obache Exp $
 #
 
-DISTNAME=      networkx-1.2
+DISTNAME=      networkx-1.6
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    math python
 MASTER_SITES=  http://pypi.python.org/packages/source/n/networkx/ \
@@ -13,7 +13,8 @@
 LICENSE=       modified-bsd
 
 PKG_DESTDIR_SUPPORT=   user-destdir
-PYDISTUTILSPKG=        yes
+
+PYTHON_VERSIONS_INCOMPATIBLE=  25
 
-.include "../../lang/python/extension.mk"
+.include "../../lang/python/distutils.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r df9161058e5c -r f592149512d1 math/py-networkx/PLIST
--- a/math/py-networkx/PLIST    Sat Jun 02 12:31:17 2012 +0000
+++ b/math/py-networkx/PLIST    Sat Jun 02 13:19:17 2012 +0000
@@ -1,13 +1,83 @@
-@comment $NetBSD: PLIST,v 1.6 2010/08/27 03:09:18 gls Exp $
+@comment $NetBSD: PLIST,v 1.7 2012/06/02 13:19:17 obache Exp $
+${PYSITELIB}/${EGG_FILE}
 ${PYSITELIB}/networkx/__init__.py
 ${PYSITELIB}/networkx/__init__.pyc
 ${PYSITELIB}/networkx/__init__.pyo
 ${PYSITELIB}/networkx/algorithms/__init__.py
 ${PYSITELIB}/networkx/algorithms/__init__.pyc
 ${PYSITELIB}/networkx/algorithms/__init__.pyo
-${PYSITELIB}/networkx/algorithms/bipartite.py
-${PYSITELIB}/networkx/algorithms/bipartite.pyc
-${PYSITELIB}/networkx/algorithms/bipartite.pyo
+${PYSITELIB}/networkx/algorithms/assortativity/__init__.py
+${PYSITELIB}/networkx/algorithms/assortativity/__init__.pyc
+${PYSITELIB}/networkx/algorithms/assortativity/__init__.pyo
+${PYSITELIB}/networkx/algorithms/assortativity/connectivity.py
+${PYSITELIB}/networkx/algorithms/assortativity/connectivity.pyc
+${PYSITELIB}/networkx/algorithms/assortativity/connectivity.pyo
+${PYSITELIB}/networkx/algorithms/assortativity/correlation.py
+${PYSITELIB}/networkx/algorithms/assortativity/correlation.pyc
+${PYSITELIB}/networkx/algorithms/assortativity/correlation.pyo
+${PYSITELIB}/networkx/algorithms/assortativity/mixing.py
+${PYSITELIB}/networkx/algorithms/assortativity/mixing.pyc
+${PYSITELIB}/networkx/algorithms/assortativity/mixing.pyo
+${PYSITELIB}/networkx/algorithms/assortativity/neighbor_degree.py
+${PYSITELIB}/networkx/algorithms/assortativity/neighbor_degree.pyc
+${PYSITELIB}/networkx/algorithms/assortativity/neighbor_degree.pyo
+${PYSITELIB}/networkx/algorithms/assortativity/pairs.py
+${PYSITELIB}/networkx/algorithms/assortativity/pairs.pyc
+${PYSITELIB}/networkx/algorithms/assortativity/pairs.pyo
+${PYSITELIB}/networkx/algorithms/assortativity/tests/base_test.py
+${PYSITELIB}/networkx/algorithms/assortativity/tests/base_test.pyc
+${PYSITELIB}/networkx/algorithms/assortativity/tests/base_test.pyo
+${PYSITELIB}/networkx/algorithms/assortativity/tests/test_connectivity.py
+${PYSITELIB}/networkx/algorithms/assortativity/tests/test_connectivity.pyc
+${PYSITELIB}/networkx/algorithms/assortativity/tests/test_connectivity.pyo
+${PYSITELIB}/networkx/algorithms/assortativity/tests/test_correlation.py
+${PYSITELIB}/networkx/algorithms/assortativity/tests/test_correlation.pyc
+${PYSITELIB}/networkx/algorithms/assortativity/tests/test_correlation.pyo
+${PYSITELIB}/networkx/algorithms/assortativity/tests/test_mixing.py
+${PYSITELIB}/networkx/algorithms/assortativity/tests/test_mixing.pyc
+${PYSITELIB}/networkx/algorithms/assortativity/tests/test_mixing.pyo
+${PYSITELIB}/networkx/algorithms/assortativity/tests/test_neighbor_degree.py
+${PYSITELIB}/networkx/algorithms/assortativity/tests/test_neighbor_degree.pyc
+${PYSITELIB}/networkx/algorithms/assortativity/tests/test_neighbor_degree.pyo
+${PYSITELIB}/networkx/algorithms/assortativity/tests/test_pairs.py
+${PYSITELIB}/networkx/algorithms/assortativity/tests/test_pairs.pyc
+${PYSITELIB}/networkx/algorithms/assortativity/tests/test_pairs.pyo
+${PYSITELIB}/networkx/algorithms/bipartite/__init__.py
+${PYSITELIB}/networkx/algorithms/bipartite/__init__.pyc
+${PYSITELIB}/networkx/algorithms/bipartite/__init__.pyo
+${PYSITELIB}/networkx/algorithms/bipartite/basic.py
+${PYSITELIB}/networkx/algorithms/bipartite/basic.pyc
+${PYSITELIB}/networkx/algorithms/bipartite/basic.pyo
+${PYSITELIB}/networkx/algorithms/bipartite/centrality.py
+${PYSITELIB}/networkx/algorithms/bipartite/centrality.pyc
+${PYSITELIB}/networkx/algorithms/bipartite/centrality.pyo
+${PYSITELIB}/networkx/algorithms/bipartite/cluster.py
+${PYSITELIB}/networkx/algorithms/bipartite/cluster.pyc
+${PYSITELIB}/networkx/algorithms/bipartite/cluster.pyo
+${PYSITELIB}/networkx/algorithms/bipartite/projection.py
+${PYSITELIB}/networkx/algorithms/bipartite/projection.pyc
+${PYSITELIB}/networkx/algorithms/bipartite/projection.pyo
+${PYSITELIB}/networkx/algorithms/bipartite/redundancy.py
+${PYSITELIB}/networkx/algorithms/bipartite/redundancy.pyc
+${PYSITELIB}/networkx/algorithms/bipartite/redundancy.pyo
+${PYSITELIB}/networkx/algorithms/bipartite/spectral.py
+${PYSITELIB}/networkx/algorithms/bipartite/spectral.pyc
+${PYSITELIB}/networkx/algorithms/bipartite/spectral.pyo
+${PYSITELIB}/networkx/algorithms/bipartite/tests/test_basic.py
+${PYSITELIB}/networkx/algorithms/bipartite/tests/test_basic.pyc
+${PYSITELIB}/networkx/algorithms/bipartite/tests/test_basic.pyo
+${PYSITELIB}/networkx/algorithms/bipartite/tests/test_centrality.py
+${PYSITELIB}/networkx/algorithms/bipartite/tests/test_centrality.pyc
+${PYSITELIB}/networkx/algorithms/bipartite/tests/test_centrality.pyo
+${PYSITELIB}/networkx/algorithms/bipartite/tests/test_cluster.py
+${PYSITELIB}/networkx/algorithms/bipartite/tests/test_cluster.pyc
+${PYSITELIB}/networkx/algorithms/bipartite/tests/test_cluster.pyo
+${PYSITELIB}/networkx/algorithms/bipartite/tests/test_project.py
+${PYSITELIB}/networkx/algorithms/bipartite/tests/test_project.pyc
+${PYSITELIB}/networkx/algorithms/bipartite/tests/test_project.pyo
+${PYSITELIB}/networkx/algorithms/bipartite/tests/test_spectral_bipartivity.py
+${PYSITELIB}/networkx/algorithms/bipartite/tests/test_spectral_bipartivity.pyc
+${PYSITELIB}/networkx/algorithms/bipartite/tests/test_spectral_bipartivity.pyo
 ${PYSITELIB}/networkx/algorithms/block.py
 ${PYSITELIB}/networkx/algorithms/block.pyc
 ${PYSITELIB}/networkx/algorithms/block.pyo
@@ -26,6 +96,9 @@
 ${PYSITELIB}/networkx/algorithms/centrality/closeness.py
 ${PYSITELIB}/networkx/algorithms/centrality/closeness.pyc
 ${PYSITELIB}/networkx/algorithms/centrality/closeness.pyo
+${PYSITELIB}/networkx/algorithms/centrality/communicability_alg.py
+${PYSITELIB}/networkx/algorithms/centrality/communicability_alg.pyc
+${PYSITELIB}/networkx/algorithms/centrality/communicability_alg.pyo
 ${PYSITELIB}/networkx/algorithms/centrality/current_flow_betweenness.py
 ${PYSITELIB}/networkx/algorithms/centrality/current_flow_betweenness.pyc
 ${PYSITELIB}/networkx/algorithms/centrality/current_flow_betweenness.pyo
@@ -41,6 +114,9 @@
 ${PYSITELIB}/networkx/algorithms/centrality/eigenvector.py
 ${PYSITELIB}/networkx/algorithms/centrality/eigenvector.pyc
 ${PYSITELIB}/networkx/algorithms/centrality/eigenvector.pyo
+${PYSITELIB}/networkx/algorithms/centrality/flow_matrix.py
+${PYSITELIB}/networkx/algorithms/centrality/flow_matrix.pyc
+${PYSITELIB}/networkx/algorithms/centrality/flow_matrix.pyo
 ${PYSITELIB}/networkx/algorithms/centrality/load.py
 ${PYSITELIB}/networkx/algorithms/centrality/load.pyc
 ${PYSITELIB}/networkx/algorithms/centrality/load.pyo
@@ -50,6 +126,12 @@
 ${PYSITELIB}/networkx/algorithms/centrality/tests/test_betweenness_centrality_subset.py
 ${PYSITELIB}/networkx/algorithms/centrality/tests/test_betweenness_centrality_subset.pyc
 ${PYSITELIB}/networkx/algorithms/centrality/tests/test_betweenness_centrality_subset.pyo
+${PYSITELIB}/networkx/algorithms/centrality/tests/test_closeness_centrality.py
+${PYSITELIB}/networkx/algorithms/centrality/tests/test_closeness_centrality.pyc
+${PYSITELIB}/networkx/algorithms/centrality/tests/test_closeness_centrality.pyo
+${PYSITELIB}/networkx/algorithms/centrality/tests/test_communicability.py
+${PYSITELIB}/networkx/algorithms/centrality/tests/test_communicability.pyc
+${PYSITELIB}/networkx/algorithms/centrality/tests/test_communicability.pyo
 ${PYSITELIB}/networkx/algorithms/centrality/tests/test_current_flow_betweenness_centrality.py
 ${PYSITELIB}/networkx/algorithms/centrality/tests/test_current_flow_betweenness_centrality.pyc
 ${PYSITELIB}/networkx/algorithms/centrality/tests/test_current_flow_betweenness_centrality.pyo
@@ -68,18 +150,39 @@
 ${PYSITELIB}/networkx/algorithms/centrality/tests/test_load_centrality.py
 ${PYSITELIB}/networkx/algorithms/centrality/tests/test_load_centrality.pyc
 ${PYSITELIB}/networkx/algorithms/centrality/tests/test_load_centrality.pyo
+${PYSITELIB}/networkx/algorithms/chordal/__init__.py
+${PYSITELIB}/networkx/algorithms/chordal/__init__.pyc
+${PYSITELIB}/networkx/algorithms/chordal/__init__.pyo
+${PYSITELIB}/networkx/algorithms/chordal/chordal_alg.py
+${PYSITELIB}/networkx/algorithms/chordal/chordal_alg.pyc
+${PYSITELIB}/networkx/algorithms/chordal/chordal_alg.pyo
+${PYSITELIB}/networkx/algorithms/chordal/tests/test_chordal.py
+${PYSITELIB}/networkx/algorithms/chordal/tests/test_chordal.pyc
+${PYSITELIB}/networkx/algorithms/chordal/tests/test_chordal.pyo
 ${PYSITELIB}/networkx/algorithms/clique.py
 ${PYSITELIB}/networkx/algorithms/clique.pyc
 ${PYSITELIB}/networkx/algorithms/clique.pyo
 ${PYSITELIB}/networkx/algorithms/cluster.py
 ${PYSITELIB}/networkx/algorithms/cluster.pyc
 ${PYSITELIB}/networkx/algorithms/cluster.pyo
+${PYSITELIB}/networkx/algorithms/community/__init__.py
+${PYSITELIB}/networkx/algorithms/community/__init__.pyc
+${PYSITELIB}/networkx/algorithms/community/__init__.pyo
+${PYSITELIB}/networkx/algorithms/community/kclique.py
+${PYSITELIB}/networkx/algorithms/community/kclique.pyc
+${PYSITELIB}/networkx/algorithms/community/kclique.pyo
+${PYSITELIB}/networkx/algorithms/community/tests/test_kclique.py
+${PYSITELIB}/networkx/algorithms/community/tests/test_kclique.pyc
+${PYSITELIB}/networkx/algorithms/community/tests/test_kclique.pyo
 ${PYSITELIB}/networkx/algorithms/components/__init__.py
 ${PYSITELIB}/networkx/algorithms/components/__init__.pyc
 ${PYSITELIB}/networkx/algorithms/components/__init__.pyo
 ${PYSITELIB}/networkx/algorithms/components/attracting.py
 ${PYSITELIB}/networkx/algorithms/components/attracting.pyc
 ${PYSITELIB}/networkx/algorithms/components/attracting.pyo
+${PYSITELIB}/networkx/algorithms/components/biconnected.py
+${PYSITELIB}/networkx/algorithms/components/biconnected.pyc
+${PYSITELIB}/networkx/algorithms/components/biconnected.pyo
 ${PYSITELIB}/networkx/algorithms/components/connected.py
 ${PYSITELIB}/networkx/algorithms/components/connected.pyc
 ${PYSITELIB}/networkx/algorithms/components/connected.pyo
@@ -89,6 +192,9 @@
 ${PYSITELIB}/networkx/algorithms/components/tests/test_attracting.py
 ${PYSITELIB}/networkx/algorithms/components/tests/test_attracting.pyc
 ${PYSITELIB}/networkx/algorithms/components/tests/test_attracting.pyo
+${PYSITELIB}/networkx/algorithms/components/tests/test_biconnected.py
+${PYSITELIB}/networkx/algorithms/components/tests/test_biconnected.pyc
+${PYSITELIB}/networkx/algorithms/components/tests/test_biconnected.pyo
 ${PYSITELIB}/networkx/algorithms/components/tests/test_connected.py
 ${PYSITELIB}/networkx/algorithms/components/tests/test_connected.pyc
 ${PYSITELIB}/networkx/algorithms/components/tests/test_connected.pyo
@@ -113,6 +219,9 @@
 ${PYSITELIB}/networkx/algorithms/distance_measures.py
 ${PYSITELIB}/networkx/algorithms/distance_measures.pyc
 ${PYSITELIB}/networkx/algorithms/distance_measures.pyo
+${PYSITELIB}/networkx/algorithms/distance_regular.py
+${PYSITELIB}/networkx/algorithms/distance_regular.pyc
+${PYSITELIB}/networkx/algorithms/distance_regular.pyo
 ${PYSITELIB}/networkx/algorithms/euler.py
 ${PYSITELIB}/networkx/algorithms/euler.pyc
 ${PYSITELIB}/networkx/algorithms/euler.pyo
@@ -122,15 +231,24 @@
 ${PYSITELIB}/networkx/algorithms/flow/maxflow.py
 ${PYSITELIB}/networkx/algorithms/flow/maxflow.pyc
 ${PYSITELIB}/networkx/algorithms/flow/maxflow.pyo
+${PYSITELIB}/networkx/algorithms/flow/mincost.py
+${PYSITELIB}/networkx/algorithms/flow/mincost.pyc
+${PYSITELIB}/networkx/algorithms/flow/mincost.pyo
 ${PYSITELIB}/networkx/algorithms/flow/tests/test_maxflow.py
 ${PYSITELIB}/networkx/algorithms/flow/tests/test_maxflow.pyc
 ${PYSITELIB}/networkx/algorithms/flow/tests/test_maxflow.pyo
 ${PYSITELIB}/networkx/algorithms/flow/tests/test_maxflow_large_graph.py
 ${PYSITELIB}/networkx/algorithms/flow/tests/test_maxflow_large_graph.pyc
 ${PYSITELIB}/networkx/algorithms/flow/tests/test_maxflow_large_graph.pyo
-${PYSITELIB}/networkx/algorithms/isolates.py
-${PYSITELIB}/networkx/algorithms/isolates.pyc
-${PYSITELIB}/networkx/algorithms/isolates.pyo
+${PYSITELIB}/networkx/algorithms/flow/tests/test_mincost.py
+${PYSITELIB}/networkx/algorithms/flow/tests/test_mincost.pyc
+${PYSITELIB}/networkx/algorithms/flow/tests/test_mincost.pyo
+${PYSITELIB}/networkx/algorithms/graphical.py
+${PYSITELIB}/networkx/algorithms/graphical.pyc
+${PYSITELIB}/networkx/algorithms/graphical.pyo
+${PYSITELIB}/networkx/algorithms/isolate.py
+${PYSITELIB}/networkx/algorithms/isolate.pyc
+${PYSITELIB}/networkx/algorithms/isolate.pyo
 ${PYSITELIB}/networkx/algorithms/isomorphism/__init__.py
 ${PYSITELIB}/networkx/algorithms/isomorphism/__init__.pyc
 ${PYSITELIB}/networkx/algorithms/isomorphism/__init__.pyo
@@ -140,19 +258,25 @@
 ${PYSITELIB}/networkx/algorithms/isomorphism/isomorphvf2.py
 ${PYSITELIB}/networkx/algorithms/isomorphism/isomorphvf2.pyc
 ${PYSITELIB}/networkx/algorithms/isomorphism/isomorphvf2.pyo
+${PYSITELIB}/networkx/algorithms/isomorphism/matchhelpers.py
+${PYSITELIB}/networkx/algorithms/isomorphism/matchhelpers.pyc
+${PYSITELIB}/networkx/algorithms/isomorphism/matchhelpers.pyo
 ${PYSITELIB}/networkx/algorithms/isomorphism/tests/iso_r01_s80.A99
 ${PYSITELIB}/networkx/algorithms/isomorphism/tests/iso_r01_s80.B99
 ${PYSITELIB}/networkx/algorithms/isomorphism/tests/si2_b06_m200.A99
 ${PYSITELIB}/networkx/algorithms/isomorphism/tests/si2_b06_m200.B99
+${PYSITELIB}/networkx/algorithms/isomorphism/tests/test_isomorphism.py
+${PYSITELIB}/networkx/algorithms/isomorphism/tests/test_isomorphism.pyc
+${PYSITELIB}/networkx/algorithms/isomorphism/tests/test_isomorphism.pyo
 ${PYSITELIB}/networkx/algorithms/isomorphism/tests/test_isomorphvf2.py
 ${PYSITELIB}/networkx/algorithms/isomorphism/tests/test_isomorphvf2.pyc
 ${PYSITELIB}/networkx/algorithms/isomorphism/tests/test_isomorphvf2.pyo
-${PYSITELIB}/networkx/algorithms/isomorphism/tests/test_vf2weighted.py
-${PYSITELIB}/networkx/algorithms/isomorphism/tests/test_vf2weighted.pyc
-${PYSITELIB}/networkx/algorithms/isomorphism/tests/test_vf2weighted.pyo
-${PYSITELIB}/networkx/algorithms/isomorphism/vf2weighted.py
-${PYSITELIB}/networkx/algorithms/isomorphism/vf2weighted.pyc
-${PYSITELIB}/networkx/algorithms/isomorphism/vf2weighted.pyo
+${PYSITELIB}/networkx/algorithms/isomorphism/tests/test_vf2userfunc.py
+${PYSITELIB}/networkx/algorithms/isomorphism/tests/test_vf2userfunc.pyc
+${PYSITELIB}/networkx/algorithms/isomorphism/tests/test_vf2userfunc.pyo
+${PYSITELIB}/networkx/algorithms/isomorphism/vf2userfunc.py
+${PYSITELIB}/networkx/algorithms/isomorphism/vf2userfunc.pyc
+${PYSITELIB}/networkx/algorithms/isomorphism/vf2userfunc.pyo
 ${PYSITELIB}/networkx/algorithms/link_analysis/__init__.py
 ${PYSITELIB}/networkx/algorithms/link_analysis/__init__.pyc
 ${PYSITELIB}/networkx/algorithms/link_analysis/__init__.pyo
@@ -171,27 +295,39 @@
 ${PYSITELIB}/networkx/algorithms/matching.py
 ${PYSITELIB}/networkx/algorithms/matching.pyc
 ${PYSITELIB}/networkx/algorithms/matching.pyo
-${PYSITELIB}/networkx/algorithms/mixing.py
-${PYSITELIB}/networkx/algorithms/mixing.pyc
-${PYSITELIB}/networkx/algorithms/mixing.pyo
+${PYSITELIB}/networkx/algorithms/mis.py
+${PYSITELIB}/networkx/algorithms/mis.pyc
+${PYSITELIB}/networkx/algorithms/mis.pyo
 ${PYSITELIB}/networkx/algorithms/mst.py
 ${PYSITELIB}/networkx/algorithms/mst.pyc
 ${PYSITELIB}/networkx/algorithms/mst.pyo
 ${PYSITELIB}/networkx/algorithms/operators.py
 ${PYSITELIB}/networkx/algorithms/operators.pyc
 ${PYSITELIB}/networkx/algorithms/operators.pyo
+${PYSITELIB}/networkx/algorithms/product.py
+${PYSITELIB}/networkx/algorithms/product.pyc
+${PYSITELIB}/networkx/algorithms/product.pyo
+${PYSITELIB}/networkx/algorithms/richclub.py
+${PYSITELIB}/networkx/algorithms/richclub.pyc
+${PYSITELIB}/networkx/algorithms/richclub.pyo
 ${PYSITELIB}/networkx/algorithms/shortest_paths/__init__.py
 ${PYSITELIB}/networkx/algorithms/shortest_paths/__init__.pyc
 ${PYSITELIB}/networkx/algorithms/shortest_paths/__init__.pyo
 ${PYSITELIB}/networkx/algorithms/shortest_paths/astar.py
 ${PYSITELIB}/networkx/algorithms/shortest_paths/astar.pyc
 ${PYSITELIB}/networkx/algorithms/shortest_paths/astar.pyo
+${PYSITELIB}/networkx/algorithms/shortest_paths/dense.py
+${PYSITELIB}/networkx/algorithms/shortest_paths/dense.pyc
+${PYSITELIB}/networkx/algorithms/shortest_paths/dense.pyo
 ${PYSITELIB}/networkx/algorithms/shortest_paths/generic.py



Home | Main Index | Thread Index | Old Index