Metadata-Version: 2.4
Name: markoff-graph
Version: 0.0.2
Summary: Finite-field Markoff graph components
License-Expression: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# markoff-graph
build A/B/C/D markoff graph modulo p
```python
from markoff_graph import markoff

G = markoff(4, 4, -2, -4, 31)

G.nodes()
G.edges()
G.roots()
G.component()
G.neighbors((x, y, z))
```
