Metadata-Version: 2.2
Name: factorchain
Version: 1.0
Summary: A library for multiple simultaneous computations with dynamically influencing results in complex webs of interconnected operations.
Home-page: https://sourceduty.com
Author: Sourceduty
Author-email: sourceduty@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Factorchain Library

Factorchain is a powerful mathematical framework for optimizing computation chains using interconnected operations.

## Installation
```sh
pip install factorchain
```

## Usage

```python
from factorchain import Factorchain

def square(x):
    return x * x

fc = Factorchain([square, np.sin])
result = fc.compute(3)
print(result)
```

## Features
- Matrix operations
- Fourier Transforms
- Polynomial expansions
- Neural network applications
