Metadata-Version: 2.4
Name: arithmeflow
Version: 0.1.1
Summary: Smooth arithmetic interpolation between addition and multiplication — based on hyperoperation theory
Author-email: Dashmir Mejdi <dashmir.mejdi1507@gmail.com>
License: MIT
Project-URL: Homepage, https://hyperflow-um4jhq9jvgeanzxw8wtufq.streamlit.app
Project-URL: Repository, https://github.com/d4shm1r/hyperflow
Keywords: mathematics,interpolation,hyperoperations,numerical
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Scientific/Engineering :: Mathematics
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: scipy

# Arithmeflow

Smooth interpolation between addition and multiplication using a single parameter `z`.

## Install

```bash
pip install arithmeflow
```

## Usage

```python
import arithmeflow

# Single value
result = hyperflow.compute(3, 4, 1.5)
print(result)  # ~10.97

# Full curve
points = hyperflow.curve(3, 4)
for z, val in points:
    print(f"z={z:.2f}  F={val:.4f}")
```

## What it does

- `z = 1.0` → returns `x + y` (addition)
- `z = 2.0` → returns `x * y` (multiplication)
- `z = 1.5` → smooth midpoint between the two

Based on an original ODE framework with proven boundary conditions.

## Links

- Live demo: https://hyperflow-um4jhq9jvgeanzxw8wtufq.streamlit.app
- API: https://hyperflow-api.onrender.com
- Paper: coming soon (Zenodo)
- Buy: https://dashmir7.gumroad.com/l/zxtaqe
