https://github.com/julien-livet/sym
Symbolic tool in C++ for symbolic expressions
https://github.com/julien-livet/sym
cpp symbolic-computation
Last synced: 12 months ago
JSON representation
Symbolic tool in C++ for symbolic expressions
- Host: GitHub
- URL: https://github.com/julien-livet/sym
- Owner: Julien-Livet
- License: apache-2.0
- Created: 2025-07-14T20:05:04.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-07-14T20:06:16.000Z (12 months ago)
- Last Synced: 2025-07-15T00:45:09.663Z (12 months ago)
- Topics: cpp, symbolic-computation
- Language: C++
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/Julien-Livet/Sym/stargazers)
[](https://github.com/Julien-Livet/Sym/issues)
[](LICENSE)

# Sym
## General purpose
Sym is a symbolic tool to deal symbolic expressions like GiNaC in C++ or sympy in Python.
## Installation
```
sudo apt update
sudo apt install -y cmake make git libboost-all-dev
sudo apt install -y libgoogle-glog-dev libatlas-base-dev libeigen3-dev libsuitesparse-dev
cd ~
mkdir sym_ws
cd sym_ws
git clone https://github.com/Julien-Livet/Sym.git
cd Sym
mkdir build && cd build
cmake ..
make -j$(nproc)
sudo make install
ctest -V
```