https://github.com/sergiorf/aleph3
aleph3 is a modern, extensible computer algebra system written in C++20. It provides fast symbolic computation and mathematical expression evaluation, with a focus on clarity, performance, and a familiar, Mathematica-inspired syntax.
https://github.com/sergiorf/aleph3
cli-tool computer-algebra cpp20 math symbolic-computation
Last synced: 8 months ago
JSON representation
aleph3 is a modern, extensible computer algebra system written in C++20. It provides fast symbolic computation and mathematical expression evaluation, with a focus on clarity, performance, and a familiar, Mathematica-inspired syntax.
- Host: GitHub
- URL: https://github.com/sergiorf/aleph3
- Owner: sergiorf
- License: mit
- Created: 2025-04-26T21:25:09.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-06-13T22:45:40.000Z (8 months ago)
- Last Synced: 2025-06-13T23:27:20.740Z (8 months ago)
- Topics: cli-tool, computer-algebra, cpp20, math, symbolic-computation
- Language: C++
- Homepage:
- Size: 4.27 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README


# Aleph3
aleph3 is a modern, extensible computer algebra system written in C++20. It provides fast symbolic computation and mathematical expression evaluation, with a focus on clarity, performance, and a familiar, Mathematica-inspired syntax.
## Features
- Basic algebraic operations: `+`, `-`, `*`, `/`
- Symbolic computation support
- Extensible architecture for advanced features
## Getting Started
To build Aleph3, ensure you have CMake 3.20+ and a C++20-compatible compiler installed. Follow these steps:
1. Clone the repository:
```bash
git clone https://github.com/sergiorf/aleph3.git
cd aleph3
```
2. Build the project:
```bash
cmake -S . -B build
cmake --build build
cd build
ctest -C Debug --output-on-failure --verbose
```
3. Run the Aleph3 CLI:
```bash
./build/bin/aleph3
```
## Looking for Contributors 🚀
We are actively looking for contributors to help improve Aleph3! Whether you're experienced in C++ or just starting out, your contributions are welcome. Here are some ways you can help:
- Add new features (e.g., advanced mathematical operations, symbolic differentiation).
- Improve the codebase by refactoring or optimizing existing code.
- Write documentation or tutorials for new users.
- Report bugs or suggest enhancements.
If you're interested, please:
1. Open an issue or discussion in the repository.
2. Contact me via email for more details.
Check out the [C++ Style Guide](docs/style_guide.md) to get started with contributing!
## License
[MIT License](LICENSE)