C++ Utilities
4.9.0
Common C++ classes and routines used by my applications such as argument parser, IO and conversion utilities
|
Go to the source code of this file.
Namespaces | |
MathUtilities | |
Contains various mathematical functions. | |
Functions | |
uint64 | powerModulo (const uint64 base, const uint64 exponent, const uint64 module) |
Computes base power exponent modulo module. More... | |
int64 | inverseModulo (int64 number, int64 module) |
Computes the inverse of number modulo module. More... | |
uint64 | orderModulo (const uint64 number, const uint64 module) |
Computes the order of number modulo module. More... | |