Metadata-Version: 2.4
Name: pd-code-delete-nugatory
Version: 0.0.2
Summary: delete all nugatory crossing from a pd_code (link or knot).
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: pd_code_de_r1
Requires-Dist: pd_code_pre_nxt
Description-Content-Type: text/markdown

# pd_code_delete_nugatory
delete all nugatory crossing from a pd_code (link or knot).

## Install

```bash
pip install pd-code-delete-nugatory
```

## Usage

```python
import pd_code_delete_nugatory


pd_code = [[8, 11, 9, 12], [12, 9, 13, 10], [10, 13, 11, 14], [7, 14, 8, 1], [4, 1, 5, 2], [2, 5, 3, 6], [6, 3, 7, 4]]

# output a 6-crossing knot
print(pd_code_delete_nugatory.erase_all_nugatory(pd_code))
```

