<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/networkx.git/networkx/algorithms/sparsifiers.py, branch main</title>
<subtitle>github.com: networkx/networkx.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/'/>
<entry>
<title> Use isort with pre-commit to enforce import guidelines (#5659)</title>
<updated>2022-06-02T15:54:09+00:00</updated>
<author>
<name>Mridul Seth</name>
<email>seth.mridul@gmail.com</email>
</author>
<published>2022-06-02T15:54:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=5c0b11afb4c0882a070d522ef3fa41482ba935d3'/>
<id>5c0b11afb4c0882a070d522ef3fa41482ba935d3</id>
<content type='text'>
* Add isort to pre-commit

* Run isort on all python files (except __init__.py ones)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add isort to pre-commit

* Run isort on all python files (except __init__.py ones)</pre>
</div>
</content>
</entry>
<entry>
<title>Format w/ black</title>
<updated>2020-07-10T16:44:54+00:00</updated>
<author>
<name>Jarrod Millman</name>
<email>jarrod.millman@gmail.com</email>
</author>
<published>2020-07-10T06:12:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=b22d6b36ce0545995c99d233546e8a1fe7e27fc5'/>
<id>b22d6b36ce0545995c99d233546e8a1fe7e27fc5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove boiler plate from top of modules</title>
<updated>2019-11-11T21:39:06+00:00</updated>
<author>
<name>Jarrod Millman</name>
<email>jarrod.millman@gmail.com</email>
</author>
<published>2019-11-09T07:31:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=89daa927a0135a79cc69a75a3c89202158fa2ca7'/>
<id>89daa927a0135a79cc69a75a3c89202158fa2ca7</id>
<content type='text'>
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.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove future imports needed by Py2</title>
<updated>2019-09-19T00:51:42+00:00</updated>
<author>
<name>Jarrod Millman</name>
<email>jarrod.millman@gmail.com</email>
</author>
<published>2019-09-19T00:19:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=05fc2d7cb654bc56bca6b92e9b599f038f24e0c5'/>
<id>05fc2d7cb654bc56bca6b92e9b599f038f24e0c5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Sparse Spanners using Baswana-Sen (#3119)</title>
<updated>2018-08-17T23:35:39+00:00</updated>
<author>
<name>Robert Gmyr</name>
<email>robert@gmyr.net</email>
</author>
<published>2018-08-17T23:35:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=7b66f3047ccc61e38a9dba744ab375e91ef88d3b'/>
<id>7b66f3047ccc61e38a9dba744ab375e91ef88d3b</id>
<content type='text'>
* First version of Baswana-Sen spanner construction

* Rewrite of algorithm and tests

* Bugfixes and simplifications

* Bugfixes

* Add more elaborate tests

* Add test for invalid stretch parameter

* Simplify spanner and test code

* Refactoring and comments

* More refactoring

* Fix critical bug in algorithm and implement better size restriction

* Rename files

* Documentation and minor change on algorithm

* Improve documentation

* Remove unused code

* Add some clarifying comments

* Complete reference to underlying paper

* Unify wording in documentation

* More elaborate docstrings

* Docstrings for tests

* Enforce coding guidelines

* Change date on copyright

* Fix python 2 issues

* Use smaller graphs for unit tests

* Use @py_random_state throughout and make tests deterministic

* Simplify code based on suggestions by jfinkels

* Further simplify code based on suggestions by jfinkels

* Use "==" instead of "is"

* Improve consistency of doc_strings

* Rename module "spanner" to "sparsifiers"

* Add spanning and sparsifiers to docs
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* First version of Baswana-Sen spanner construction

* Rewrite of algorithm and tests

* Bugfixes and simplifications

* Bugfixes

* Add more elaborate tests

* Add test for invalid stretch parameter

* Simplify spanner and test code

* Refactoring and comments

* More refactoring

* Fix critical bug in algorithm and implement better size restriction

* Rename files

* Documentation and minor change on algorithm

* Improve documentation

* Remove unused code

* Add some clarifying comments

* Complete reference to underlying paper

* Unify wording in documentation

* More elaborate docstrings

* Docstrings for tests

* Enforce coding guidelines

* Change date on copyright

* Fix python 2 issues

* Use smaller graphs for unit tests

* Use @py_random_state throughout and make tests deterministic

* Simplify code based on suggestions by jfinkels

* Further simplify code based on suggestions by jfinkels

* Use "==" instead of "is"

* Improve consistency of doc_strings

* Rename module "spanner" to "sparsifiers"

* Add spanning and sparsifiers to docs
</pre>
</div>
</content>
</entry>
</feed>
