Metadata-Version: 2.4
Name: constraint-theory-demo
Version: 0.5.1
Summary: Self-contained constraint theory demo — snap solving, holonomy, angular NN, self-consistency quine
License: MIT
Project-URL: Homepage, https://github.com/SuperInstance/constraint-theory-demo
Project-URL: Repository, https://github.com/SuperInstance/constraint-theory-demo
Keywords: constraint,satisfaction,snap,holonomy
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# Constraint Theory Demo

Self-contained constraint theory demonstrations.

## Install

```bash
pip install constraint-theory-demo
```

## Usage

```python
from constraint_theory_demo import snap_solve, visualize_holonomy

# Snap solving
result = snap_solve({"x": [0, 10], "y": [0, 10]}, constraints=["x < y"])
print(f"Found {len(result)} solutions")
```
