6#ifndef THEORETICA_BITS_H
7#define THEORETICA_BITS_H
51 (
m[2] & 0xffffffff)) >> 32;
53 c_low =
m[0] + (
m[1] << 32) + (
m[2] << 32);
81 template<
typename Un
signedIntType>
95 typename Vector, enable_vector<Vector> =
true
104 for (
unsigned int i = 0; i < x.size(); i++) {
108 for (
unsigned int k = 0;
k <
m;
k++)
109 j = (
j << 1) | ((i >>
k) & 0x01);
112 std::swap(x[i], x[
j]);
#define TH_MATH_ERROR(F_NAME, VALUE, EXCEPTION)
TH_MATH_ERROR is a macro which throws exceptions or modifies errno (depending on which compilation op...
Definition error.h:219
constexpr void swap_bit_reverse(Vector &x, unsigned int m)
Swap the elements of a vector pair-wise, by exchanging elements with indices related by bit reversion...
Definition bits.h:97
constexpr UnsignedIntType bit_rotate(UnsignedIntType x, unsigned int i)
Bit rotation of unsigned integer types using shifts.
Definition bits.h:83
constexpr uint64_t mix_mum(uint64_t a, uint64_t b)
MUM bit mixing function, computes the 128-bit product of a and b and the XOR of their high and low 64...
Definition bits.h:66
constexpr void mul_uint128(uint64_t a, uint64_t b, uint64_t &c_low, uint64_t &c_high)
Multiply two 64-bit unsigned integers and store the result in two 64-bit variables,...
Definition bits.h:28
Main namespace of the library which contains all functions and objects.
Definition algebra.h:27
Vector make_error()
Create a vector representing an error state, with all NaN values.
Definition algebra.h:103
@ InvalidArgument
Invalid argument.