Metadata-Version: 2.4
Name: link-khovanov
Version: 0.0.1
Summary: solve khovanov for link for both directions of each component.
License: MIT
License-File: LICENSE
Author: GGN_2015
Author-email: neko@jlulug.org
Requires-Python: >=3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: javakh_interface
Requires-Dist: pd_code_components
Requires-Dist: pd_code_reverse_component
Requires-Dist: pd_code_sanity
Description-Content-Type: text/markdown

# link_khovanov
solve khovanov for link for both directions of each component.

## Install

```bash
pip install link-khovanov
```

## Usage

```python
import link_khovanov

pd_code = [[10, 1, 11, 2], [12, 3, 13, 4], [14, 19, 15, 20], [18, 7, 19, 8], [16, 5, 17, 6], [4, 15, 5, 16], [6, 17, 7, 18], [20, 13, 9, 14], [2, 9, 3, 10], [8, 11, 1, 12]]

for idx, line in enumerate(link_khovanov.link_khovanov(pd_code)):
    print(f"{idx:02d}", line, "\n")
```

