- Notifications
You must be signed in to change notification settings - Fork2
Simple Long Integer Math for C++
License
devatrun/slimcpplib
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
SLIMCPP is a C++ header-only library that implements long integers that exceed maximum size of native type supported by a specific compiler by 2-4 times. All classes, methods and functions were not created or designed to work with huge numbers, for which there are specialized big integer mathematical libraries. In some cases, it is necessary to temporarily perform calculations with precision exceeding the maximum supported size of integers, and then return the result to its native size again. The conditions are ideal for SLIMCPP.The main features:
- easy to use: the library is header-only
- small: consists of few header files, there is no dependencies
- speed: use intrinsics if supported
- cross-platform: supports MSVC, GCC and CLANG C++17 compilers
- exception neutral: doesn't use exceptions, all methods are noexсept
The library implements two main classes:
namespaceslim{template<typenamenative_t =uintmax_t,uint_t size =2>classlong_uint_t;// unsigned integertemplate<typenamenative_t =uintmax_t,uint_t size =2>classlong_int_t;// signed integer}// namespace slim
where native_t may be one of base unsigned type and size must by power of two.
- long_int.h - signed long integer class (Can be completely removed if not used)
- long_uint.h - unsigned long integer class
- long_math.h - cross-platform helper classes and functions
- long_math_long.h - cross-platform helper classes and functions (long_uint_t/long_int_t specializations)
- long_math_gcc.h - GCC, CLANG helper classes and functions (Can be completely removed if irrelevant)
- long_math_msvc.h - MSVC helper classes and functions (Can be completely removed if irrelevant)
- long_io.h - standard stream input/output (Can be completely removed if not used)
The library implements four predefined types: uint128_t, uint256_t, int128_t, int256_t. You can use them in your project by include code below:
#include<slimcpplib/long_int.h>// Include all integers support// or#include<slimcpplib/long_uint.h>// Include only unsigned integers supportnamespaceyour_namespace{usinguint128_t = slim::uint128_t;usinguint256_t = slim::uint256_t;usingint128_t = slim::int128_t;usingint256_t = slim::int256_t;usingnamespaceslim::literals;}// namespace your_namespace
constexprauto uo = 03766713523035452062041773345651416625031020_ui128;// octal unsigned integerconstexprauto ud = 338770000845734292534325025077361652240_ui128;// decimal unsigned integerconstexprauto uh = 0xfedcba9876543210fedcba9876543210_ui128;// hexadecimal unsigned integerconstexprauto io = -03766713523035452062041773345651416625031020_si128;// octal signed integerconstexprauto id = -338770000845734292534325025077361652240_si128;// decimal signed integerconstexprauto ih = -0xfedcba9876543210fedcba9876543210_si128;// hexadecimal signed integer
also supported (') separator for integer literals:
constexprauto u =0xfedcba98'76543210'fedcba98'76543210_ui128;// hexadecimal unsigned integer
constuint128_t u;// construct uninitialized unsigned integerconstuint128_t u =1U;// construction from unsigned integerconstint128_t s = -1;// construction from signed integerconstuint128_t u = 10000_ui128;// construction from long unsigned integerconstint128_t u = -10000_si128;// construction from long signed integerconstuint128_t u =true;// construction from boolean value
long_uint_t type supports following operators:
==, !=, <, <=, >, >=, <<=, <<, >>=, >>, +=, +, ++, -=, -, --, *=, *, /=, /, %=, %, ~, &=, &, |=, |, ^=, ^long_int_t type supports following operators:
==, !=, <, <=, >, >=, +=, +, ++, -=, -, --, *=, *, /=, /, %=, %
The library implements the muldiv method for faster calculation of the following expressions: (a * b / c). It can be used with signed and unsigned integers.
template<typenametype_t>constexprtype_tmuldiv(consttype_t& value,consttype_t& multiplier,consttype_t& divider)noexcept;
std::cout << std::oct << 338770000845734292534325025077361652240_ui128 <<"\n";// octalstd::cout << std::dec << 03766713523035452062041773345651416625031020_ui128 <<"\n";// decimalstd::cout << std::hex << 0xfedcba9876543210fedcba9876543210_ui128 <<"\n";// hexadecimal
- Although all methods and functions are defined using the constexpr qualifier, due to the limitations of C++ 17, working completely at compile time is only possible for code without instrinsics, since there is no implementation ofstd::is_constant_evaluated() in the standard before C++ 20.
- The design of long integers tries to completely repeat the behavior of native integers, but still differs. For example, the propagation of integer types always occurs from a signed integer to an unsigned integer, and an implicit conversion from a larger integer to a smaller integer does not cause a warning, but a compilation error.
- Location of digits always corresponds to little-endian, regardless of the platform, which should be taken into account when serialization/deserialization. The digits themselves are always in platform natural order.
main.cpp - examples of using the main interface of the library with comments.
All measurements are not intended to be a strong performance tests and are provided simply for relative comparison of the operation costs. All measurements were taken on Intel (R) Core (TM) i5-9400F CPU @ 2.90GHz in a 64-bit configuration with 128-bit integers.
| Operation | Average time (in ns.) |
|---|---|
| Unsigned addition | 0.25 |
| Signed addition | 0.25 |
| Unsigned subtraction | 0.25 |
| Signed subtraction | 0.25 |
| Unsigned multiplication | 7.00 |
| Signed multiplication | 7.00 |
| Unsigned division | 15.00 |
| Signed division | 20.00 |
| Unsigned muldiv() | 20.00 |
| Signed muldiv() | 25.00 |
About
Simple Long Integer Math for C++
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Contributors2
Uh oh!
There was an error while loading.Please reload this page.