gitextract_w7ya3lpo/ ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── dependabot.yml │ └── workflows/ │ └── wheels.yml ├── .gitignore ├── CITATION.cff ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── benchmark_runner.py ├── pyproject.toml ├── src/ │ └── simplification/ │ ├── __init__.py │ ├── cutil.pyx │ ├── rdp_p.pxd │ ├── stdbool.h │ └── util.py └── tests/ ├── coords.json ├── coords_complex.json ├── cprofile_rust_cython.py ├── cprofile_rust_cython_complex.py ├── cprofile_rust_cython_shapely.py └── test_simplification.py