LSST Applications g0fba68d861+05816baf74,g1ec0fe41b4+f536777771,g1fd858c14a+a9301854fb,g35bb328faa+fcb1d3bbc8,g4af146b050+a5c07d5b1d,g4d2262a081+6e5fcc2a4e,g53246c7159+fcb1d3bbc8,g56a49b3a55+9c12191793,g5a012ec0e7+3632fc3ff3,g60b5630c4e+ded28b650d,g67b6fd64d1+ed4b5058f4,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g8352419a5c+fcb1d3bbc8,g87b7deb4dc+7b42cf88bf,g8852436030+e5453db6e6,g89139ef638+ed4b5058f4,g8e3bb8577d+d38d73bdbd,g9125e01d80+fcb1d3bbc8,g94187f82dc+ded28b650d,g989de1cb63+ed4b5058f4,g9d31334357+ded28b650d,g9f33ca652e+50a8019d8c,gabe3b4be73+1e0a283bba,gabf8522325+fa80ff7197,gb1101e3267+d9fb1f8026,gb58c049af0+f03b321e39,gb665e3612d+2a0c9e9e84,gb89ab40317+ed4b5058f4,gcf25f946ba+e5453db6e6,gd6cbbdb0b4+bb83cc51f8,gdd1046aedd+ded28b650d,gde0f65d7ad+941d412827,ge278dab8ac+d65b3c2b70,ge410e46f29+ed4b5058f4,gf23fb2af72+b7cae620c0,gf5e32f922b+fcb1d3bbc8,gf67bdafdda+ed4b5058f4,w.2025.16
LSST Data Management Base Package
|
BigInteger
is an arbitrary precision signed integer class.
More...
#include <BigInteger.h>
Public Member Functions | |
BigInteger (std::uint32_t *digits, unsigned capacity) | |
This constructor creates a zero-valued integer with the given digit array. | |
BigInteger & | operator= (BigInteger const &b) |
int | getSign () const |
getSign returns -1, 0 or 1 if this integer is negative, zero or positive. | |
unsigned | getSize () const |
getSize returns the number of digits in the value of this integer. | |
unsigned | getCapacity () const |
getCapacity returns the number of digits in the underlying digit array. | |
std::uint32_t const * | getDigits () const |
getDigits returns the underlying digit array. | |
void | setToZero () |
setToZero sets this integer to zero. | |
void | setTo (std::int64_t x) |
setTo sets this integer to the given signed 64 bit integer value. | |
void | setTo (std::uint64_t x) |
setTo sets this integer to the given unsigned 64 bit integer value. | |
void | negate () |
negate multiplies this integer by -1. | |
BigInteger & | add (BigInteger const &b) |
add adds b to this integer. | |
BigInteger & | subtract (BigInteger const &b) |
subtract subtracts b from this integer. | |
BigInteger & | multiplyPow2 (unsigned n) |
multiplyPow2 multiplies this integer by 2ⁿ. | |
BigInteger & | multiply (BigInteger const &b) |
multiply multiplies this integer by b. | |
BigInteger
is an arbitrary precision signed integer class.
It is intended to be used in applications which need relatively small integers, and only supports addition, subtraction and multiplication.
Internally, a BigInteger consists of a sign and an unsigned magnitude. The magnitude is represented by an array of 32 bit digits, stored from least to most significant. All non-zero integers have at least one digit, the most significant of which is non-zero. Zero is defined to have no digits.
Definition at line 51 of file BigInteger.h.
|
inline |
This constructor creates a zero-valued integer with the given digit array.
Definition at line 55 of file BigInteger.h.
BigInteger & lsst::sphgeom::BigInteger::add | ( | BigInteger const & | b | ) |
add
adds b to this integer.
Definition at line 163 of file BigInteger.cc.
|
inline |
getCapacity
returns the number of digits in the underlying digit array.
Definition at line 81 of file BigInteger.h.
|
inline |
getDigits
returns the underlying digit array.
Definition at line 84 of file BigInteger.h.
|
inline |
getSign
returns -1, 0 or 1 if this integer is negative, zero or positive.
Definition at line 74 of file BigInteger.h.
|
inline |
getSize
returns the number of digits in the value of this integer.
Definition at line 77 of file BigInteger.h.
BigInteger & lsst::sphgeom::BigInteger::multiply | ( | BigInteger const & | b | ) |
multiply
multiplies this integer by b.
Definition at line 256 of file BigInteger.cc.
BigInteger & lsst::sphgeom::BigInteger::multiplyPow2 | ( | unsigned | n | ) |
multiplyPow2
multiplies this integer by 2ⁿ.
Definition at line 221 of file BigInteger.cc.
|
inline |
negate
multiplies this integer by -1.
Definition at line 109 of file BigInteger.h.
|
inline |
Definition at line 62 of file BigInteger.h.
|
inline |
setTo
sets this integer to the given signed 64 bit integer value.
Definition at line 90 of file BigInteger.h.
|
inline |
setTo
sets this integer to the given unsigned 64 bit integer value.
Definition at line 100 of file BigInteger.h.
|
inline |
setToZero
sets this integer to zero.
Definition at line 87 of file BigInteger.h.
BigInteger & lsst::sphgeom::BigInteger::subtract | ( | BigInteger const & | b | ) |
subtract
subtracts b from this integer.
Definition at line 208 of file BigInteger.cc.