summaryrefslogtreecommitdiff
path: root/networkx/algorithms/components/semiconnected.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove `topo_order` kwarg from `is_semiconnected` without deprecation. (#6651)Ross Barnowski2023-05-031-9/+14
| | | | | | | | | | | * Remove topo_order kwarg without deprecation. * Add release note about semiconnected removing the topo_order kwarg. * Add to doc_string the method used to find semiconnected --------- Co-authored-by: Dan Schult <dschult@colgate.edu>
* Format python in docstrings (#4168)Jarrod Millman2020-08-191-2/+2
| | | | | | | | | | | | | | | | | | | * Format code w/ black * Format docstrings w/ black * Manual cleanup * Tell pytest to ignore planned deprecations * Don't call plt.show during testing * Another known deprecation * DOC: rm duplicate line from docstring example * Minor cleanup Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
* Format w/ blackJarrod Millman2020-07-101-3/+4
|
* Remove superfluous encoding informationJarrod Millman2019-11-111-1/+0
|
* Remove boiler plate from top of modulesJarrod Millman2019-11-111-8/+0
| | | | | | | | | 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 more documentation issues with exceptionsJarrod Millman2019-11-091-2/+2
|
* added topo_order parameter to functions that rely on topological_sort (#3447)Anthony Labarre2019-05-211-3/+8
| | | Fixes #3446
* Update copyrightJarrod Millman2019-03-301-1/+1
|
* Replacing `Return` to `Returns` in docs for functions (#3301)Moradnejad2019-02-181-1/+1
| | | | | | * Fixed problem in documentation view of this function * Replacing `Return` to `Returns` in function docs
* Update copyrightJarrod Millman2018-01-201-1/+1
|
* Update copyrightJarrod Millman2017-07-251-1/+1
|
* Correct see also linksMichael-E-Rose2016-04-201-4/+4
|
* Format/Correct/Extend docstrings and update top of modulesMichael-E-Rose2016-04-161-12/+15
|
* topolgical_sort, lexicographical_topological_sortNeil2015-08-311-2/+2
| | | | | | | | | | | | | | Rewrote topolgical_sort as a generator: * It no longer accepts reverse or nbunch arguments * It is slightly faster. Added lexicographical_topological_sort, which accepts a key. Some tests for topological sort were removed because they relied on CPython's particular dict element ordering. Added utils from more_itertools: * These were necessary for working with the new generators. * "pairwise" is equavalent to zip(some_list, some_list[1:]) -- for generators. * "consume" consumes an iterator.
* Add recognition algorithm for semiconnected graphsysitu2014-04-251-0/+64