gitextract_a9o9q6ic/ ├── .github/ │ └── workflows/ │ └── python-package.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── doc/ │ ├── conf.py │ ├── dot/ │ │ ├── chain.dot │ │ ├── dependency.dot │ │ └── design.dot │ └── index.rst ├── images/ │ └── samples/ │ ├── Castle/ │ │ └── data.xml │ ├── Circles/ │ │ └── data.xml │ ├── Circuit/ │ │ └── data.xml │ ├── Knots/ │ │ └── data.xml │ ├── Rooms/ │ │ └── data.xml │ └── Summer/ │ └── data.xml ├── pyproject.toml ├── requirements.txt ├── samples.xml ├── samples_cats.xml ├── samples_original.xml ├── samples_reference.xml ├── samples_reference_continue.xml ├── samples_reference_nohogs.xml ├── samples_test.xml ├── samples_test_ground.xml ├── samples_test_vis.xml ├── setup.cfg ├── setup.py ├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── test_wfc_adjacency.py │ ├── test_wfc_patterns.py │ ├── test_wfc_solver.py │ └── test_wfc_tiles.py ├── wfc/ │ ├── __init__.py │ ├── py.typed │ ├── wfc_adjacency.py │ ├── wfc_control.py │ ├── wfc_patterns.py │ ├── wfc_solver.py │ ├── wfc_tiles.py │ ├── wfc_utilities.py │ └── wfc_visualize.py └── wfc_run.py