(We now use Github Workflow to release to pypi. Skip the rest if you don't want to manually compile wheels.) # conda create -y -n py36 python=3.6 # conda create -y -n py37 python=3.7 conda create -y ...
Implementation of union-find (aka disjoint-set) data structure. Currently, for performance, the structure is defined on a set ${0, \dots, n-1}$, of size $n$, which is ...