skip to navigation
skip to content

distancematrix 0.0.1

Optimally call distance matrix information for list of origin-dest pairs.

Downloads ↓

pydistancematrix will partition a list of edges based on a hard limit of nodes per graph.

Essentially, this module will take a graph and partition it into subgraphs of a hard limit size, returning both the lists of nodes in each sub-graph, and the list of edges that are 'cut' by the partitioning.

For example:

>>> import distancematrix

>>> distancematrix.matrix_calls([
    (1, 2),
    (2, 3),
    (7, 8),
    (9, 10)], limit=3)
[[1, 2, 3], [7, 8], [9, 10]], []

License

BSD

Author

Mike Axiak

 
File Type Py Version Uploaded on Size # downloads
distancematrix-0.0.1.tar.gz (md5) Source 2012-01-05 2KB 160