Metadata-Version: 2.1
Name: unionfind
Version: 0.0.12
Summary: `unionfind` is a package for unionfind.
Home-page: https://github.com/SaitoTsutomu/unionfind
License: MIT
Author: SaitoTsutomu
Author-email: tsutomu7@hotmail.co.jp
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Description-Content-Type: text/x-rst

`unionfind` is a package for unionfind.

::

   from unionfind import unionfind
   u = unionfind(3) # There are 3 items.
   u.unite(0, 2) # Set 0 and 2 to same group.
   u.issame(1, 2) # Ask "Are 1 and 2 same?"
   u.groups() # Return groups.

See also https://pypi.org/project/ortoolpy/

Requirements
------------
* Python 3

Features
--------
* nothing

Setup
-----
::

   $ pip install unionfind

History
-------
0.0.1 (2015-4-3)
~~~~~~~~~~~~~~~~~~
* first release

