https://github.com/ntapiam/pydend
Implementation of dendriform and tridendriform structures on Schröder trees
https://github.com/ntapiam/pydend
algebraic-structures linear-algebra mit-license
Last synced: over 1 year ago
JSON representation
Implementation of dendriform and tridendriform structures on Schröder trees
- Host: GitHub
- URL: https://github.com/ntapiam/pydend
- Owner: ntapiam
- License: mit
- Created: 2025-03-21T09:15:43.000Z (over 1 year ago)
- Default Branch: trunk
- Last Pushed: 2025-03-21T09:57:34.000Z (over 1 year ago)
- Last Synced: 2025-03-21T10:37:35.629Z (over 1 year ago)
- Topics: algebraic-structures, linear-algebra, mit-license
- Language: Python
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dend
Dend is a Python project for doing calculations with Schröder trees. It provides modules for (tri-)dendriform and vector operations.
## Installation
1. Clone the repository:
```bash
git clone https://github.com/ntapiam/dend.git
cd dend
```
2. (Optional) Create and activate a virtual environment:
```bash
python3 -m venv venv
source venv/bin/activate
```
3. Install the package:
```bash
pip install -e .
```
## Usage
After installation, you can run the main application:
```bash
python -m dend.main
```
You can also run tests using:
```bash
pytest
```
## Project Structure
- **src/dend/**: Contains the source code for the dend package.
- **tests/**: Contains unit tests for the project.
- **pyproject.toml**: Project configuration.
## License
This project is licensed under the terms of the LICENSE file.