https://github.com/windowsnt/n
A simple c++ 11 bignum library
https://github.com/windowsnt/n
Last synced: 8 months ago
JSON representation
A simple c++ 11 bignum library
- Host: GitHub
- URL: https://github.com/windowsnt/n
- Owner: WindowsNT
- License: mit
- Created: 2022-09-04T14:27:04.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-09-04T20:24:05.000Z (over 3 years ago)
- Last Synced: 2025-01-13T22:20:04.379Z (over 1 year ago)
- Language: C++
- Size: 20.5 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# N
A small C++ bignum library. Uses only C++ elements.
You can compile with N_MT to use multithread adding and multiplication - Uses https://github.com/progschj/ThreadPool
You can compile with N_SMALLVECTOR to use a stack vector for small numbers instead of std::vector - Uses https://github.com/thelink2012/SmallVector