| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Fixed unused root argument in has_bridges
* Verify if root is in graph in chain_decomposition function
* Fix bridges function returning only bridges in connected component of root
* Apply suggestions from code review
Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
* Apply suggestions from code review
Co-authored-by: Dan Schult <dschult@colgate.edu>
* Fix bridge test when root is not in G
* Rewrite code to make it more readable
* Add missing tests for chain decomposition and bridges
* Apply suggestions from code review
Co-authored-by: Dan Schult <dschult@colgate.edu>
Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
* Apply suggestions from code review
Co-authored-by: Dan Schult <dschult@colgate.edu>
Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
Co-authored-by: Dan Schult <dschult@colgate.edu>
|
| |
|
|
|
|
|
| |
* Fix bridges documentation
* Revert source code modification
* Revert raise errors for multigraphs
|
| |
|
|
|
| |
Adds support for multigraphs to the nx.bridges function.
Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
| |
The copyright and author stuff is not necessary, out-of-date,
and inconsistent. It takes up visual space and is a pain to
police everyone doing the same thing on the top of the module.
Git handles authorship in a comprehensive and authoritative way.
The LICENSE.txt file applies to all project code.
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
| |
* Fix links
* Comply with pep8
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Initial commit of k-edge-ccs and subgraphs
Added implementation of k-edge-ccs
Added implementation of k-edge-subgraphs
Added tests for both local-cc and subgraph versions.
Added assert to test to verify their difference.
* imported appropriate utils and switched to random_powerlaw_tree_sequence
* Sped up tests. Added new directed and five clique test case
* Fixed docstrings and __init__
Added SeeAlso docstring and added algorithms to toplevel __init__
Fixed author and cleaned docstrings. Removed profiling code.
Fixed spelling error.
Registerd module for doc autogeneration.
Updated bridges.py docstring.
* Fixed doctest section underlines
* removed test main
* Added workaround for classmethod notimplemented and tests
* Fixed k=1 case for directed graphs and increased coverage
|
| |
|
|
|
|
| |
Resolves #2273
also discussed in #903
@erotemic Perhaps parts could be used (or improved by) #2459
|
|
|
This bridge-finding algorithm is implemented using the
`chain_decomposition` function.
|