BigInt is a library to do simple arithmetic operations for big numbers, possibly way higher than computers support normally.
- Integers between [-10^512, 10^512]
- Basic arithmetic operations (add, sub, mul, div, mod) as you would expect from any integer value
- Logical operations (lt, leq, gt, geq, eq, neq)
In order to use the project you need the following libraries:
- gcc (note that c++20 or higher is required)
- cmake
- doctest
If you're using apt, you can most likely use the following command:
sudo apt update
sudo apt install build-essential cmake doctest-dev