Abacus is a header only library for arbitrary precision big number arithmetic computing. It is a toy project created with following objectives in my mind:
- to practice my C++ programming skills
- to learn mathematics, especially for encryption study I hope
As it is just for educational purpose, the implementation is unrestrained. Anyway, a bc compatible executive will be created as an application and benchmark test.
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/Your/Installation/Path/ ..
make
make install