12 #ifndef HELIB_NUMBTH_H
13 #define HELIB_NUMBTH_H
31 #include <NTL/version.h>
35 #include <NTL/ZZ_pX.h>
36 #include <NTL/xdouble.h>
38 #include <NTL/mat_GF2.h>
39 #include <NTL/mat_GF2E.h>
40 #include <NTL/GF2XFactoring.h>
42 #include <NTL/mat_lzz_p.h>
43 #include <NTL/mat_lzz_pE.h>
44 #include <NTL/lzz_pXFactoring.h>
46 #include <NTL/GF2EX.h>
47 #include <NTL/lzz_pEX.h>
52 #if (NTL_MAJOR_VERSION < 11)
53 #error "This version of HElib requires NTL version 11.0.0 or above"
56 #include <helib/assertions.h>
57 #include <helib/apiAttributes.h>
61 extern const long double PI;
63 namespace FHEglobals {
134 long mcMod(
long a,
long b);
135 long mcDiv(
long a,
long b);
148 inline double fsquare(
double x) {
return x * x; }
161 void ppsolve(NTL::vec_zz_pE& x,
162 const NTL::mat_zz_pE& A,
163 const NTL::vec_zz_pE& b,
169 const NTL::mat_GF2E& A,
170 const NTL::vec_GF2E& b,
179 void ppInvert(NTL::mat_zz_p& X,
const NTL::mat_zz_p& A,
long p,
long r);
180 void ppInvert(NTL::mat_zz_pE& X,
const NTL::mat_zz_pE& A,
long p,
long r);
184 const NTL::mat_GF2& A,
192 const NTL::mat_GF2E& A,
210 const NTL::vec_zz_pE& L,
216 const NTL::vec_GF2E& L,
225 const NTL::vec_zz_pE& C,
226 const NTL::zz_pE& alpha,
231 const NTL::vec_GF2E& C,
232 const NTL::GF2E& alpha,
236 inline double log2(
const NTL::xdouble& x) {
return log(x) * 1.442695040889; }
240 void factorize(std::vector<long>& factors,
long N);
241 void factorize(std::vector<NTL::ZZ>& factors,
const NTL::ZZ& N);
245 void factorize(NTL::Vec<NTL::Pair<long, long>>& factors,
long N);
251 void phiN(
long&
phiN, std::vector<long>& facts,
long N);
252 void phiN(NTL::ZZ&
phiN, std::vector<NTL::ZZ>& facts,
const NTL::ZZ& N);
260 std::vector<long>& ords,
263 const std::vector<long>& candidates = std::vector<long>());
282 long ord(
long N,
long p);
286 long k = NTL::NextPowerOfTwo(m);
287 return (((
unsigned long)m) == (1UL << k));
291 NTL::ZZX
RandPoly(
long n,
const NTL::ZZ& p);
300 void PolyRed(NTL::ZZX& out,
const NTL::ZZX& in,
long q,
bool abs =
false);
306 inline void PolyRed(NTL::ZZX& F,
long q,
bool abs =
false)
311 inline void PolyRed(NTL::ZZX& F,
const NTL::ZZ& q,
bool abs =
false)
316 void vecRed(NTL::Vec<NTL::ZZ>& out,
317 const NTL::Vec<NTL::ZZ>& in,
321 void vecRed(NTL::Vec<NTL::ZZ>& out,
322 const NTL::Vec<NTL::ZZ>& in,
332 void MulMod(NTL::ZZX& out,
const NTL::ZZX& f,
long a,
long q,
bool abs);
334 [[deprecated(
"Please use MulMod with explicit abs argument.")]]
inline void
335 MulMod(NTL::ZZX& out,
const NTL::ZZX& f,
long a,
long q)
337 MulMod(out, f, a, q,
false);
340 inline NTL::ZZX
MulMod(
const NTL::ZZX& f,
long a,
long q,
bool abs)
343 MulMod(res, f, a, q, abs);
347 [[deprecated(
"Please use MulMod with explicit abs argument.")]]
inline NTL::ZZX
348 MulMod(
const NTL::ZZX& f,
long a,
long q)
351 MulMod(res, f, a, q,
false);
357 void balanced_MulMod(NTL::ZZX& out,
const NTL::ZZX& f,
long a,
long q);
361 inline void convert(
long& x1,
const NTL::GF2X& x2) { x1 = rep(ConstTerm(x2)); }
362 inline void convert(
long& x1,
const NTL::zz_pX& x2) { x1 = rep(ConstTerm(x2)); }
363 void convert(NTL::vec_zz_pE& X,
const std::vector<NTL::ZZX>& A);
364 void convert(NTL::mat_zz_pE& X,
const std::vector<std::vector<NTL::ZZX>>& A);
365 void convert(std::vector<NTL::ZZX>& X,
const NTL::vec_zz_pE& A);
366 void convert(std::vector<std::vector<NTL::ZZX>>& X,
const NTL::mat_zz_pE& A);
367 void convert(NTL::Vec<long>& out,
const NTL::ZZX& in);
368 void convert(NTL::Vec<long>& out,
const NTL::zz_pX& in,
bool symmetric =
true);
369 void convert(NTL::Vec<long>& out,
const NTL::GF2X& in);
370 void convert(NTL::ZZX& out,
const NTL::Vec<long>& in);
371 void convert(NTL::GF2X& out,
const NTL::Vec<long>& in);
378 template <
typename T1,
typename T2>
385 template <
typename T1,
typename T2>
386 void convert(std::vector<T1>& v1,
const std::vector<T2>& v2)
390 for (
long i = 0; i < n; i++)
394 template <
typename T1,
typename T2>
395 void convert(std::vector<T1>& v1,
const NTL::Vec<T2>& v2)
397 long n = v2.length();
399 for (
long i = 0; i < n; i++)
403 template <
typename T1,
typename T2>
404 void convert(NTL::Vec<T1>& v1,
const std::vector<T2>& v2)
408 for (
long i = 0; i < n; i++)
413 template <
typename T>
414 void convert(std::vector<T>& v1,
const std::vector<T>& v2)
419 template <
typename T1,
typename T2>
427 template <
typename T>
432 for (
long i = 0; i < n; i++)
437 template <
typename T>
442 for (
long i = 0; i < n; i++)
452 void mul(std::vector<NTL::ZZX>& x,
const std::vector<NTL::ZZX>& a,
long b);
453 void div(std::vector<NTL::ZZX>& x,
const std::vector<NTL::ZZX>& a,
long b);
454 void add(std::vector<NTL::ZZX>& x,
455 const std::vector<NTL::ZZX>& a,
456 const std::vector<NTL::ZZX>& b);
460 long is_in(
long x,
int* X,
long sz);
464 inline long CRTcoeff(
long p,
long q,
bool symmetric =
false)
466 long pInv = NTL::InvMod(p, q);
467 if (symmetric && 2 * pInv >= q)
468 return p * (pInv - q);
487 template <
class zzvec>
488 bool intVecCRT(NTL::vec_ZZ& vp,
const NTL::ZZ& p,
const zzvec& vq,
long q);
500 template <
typename T,
bool maxFlag>
505 unsigned long idx = 0;
507 for (
unsigned long i = 1; i < v.size(); i++)
522 template <
typename T>
525 return argminmax<T, true>(v);
528 template <
typename T>
531 return argminmax<T, false>(v);
536 inline long argmax(std::vector<long>& v,
bool (*moreThan)(
long,
long))
540 unsigned long idx = 0;
542 for (
unsigned long i = 1; i < v.size(); i++)
543 if ((*moreThan)(v[i], target)) {
553 double pinv = 1.0 / p;
554 return (x < (1.0 + pinv) && x > (1 - pinv));
558 std::pair<long, long>
rationalApprox(
double x,
long denomBound = 0);
561 NTL::xdouble denomBound = NTL::xdouble(0.0));
590 RandomBits(state, 512);
659 bool skip_space =
true);
662 template <
typename T>
663 void reverse(NTL::Vec<T>& v,
long lo,
long hi)
666 assertInRange(lo, 0l, hi,
"Invalid argument: Bad interval",
true);
667 assertTrue(hi < n,
"Invalid argument: Interval exceeds vector size");
672 for (
long i = lo, j = hi; i < j; i++, j--)
679 template <
typename T>
701 template <
typename T>
702 inline long lsize(
const std::vector<T>& v)
704 return (
long)v.size();
710 template <
typename T>
713 std::vector<T>().swap(vec);
716 template <
typename T>
723 template <
typename T>
727 vec.resize(0, vec[0]);
730 template <
typename T>
733 if (vec.length() > 0)
734 vec.SetLength(0, vec[0]);
737 template <
typename T>
738 inline long lsize(
const NTL::Vec<T>& v)
743 template <
typename T>
744 void resize(NTL::Vec<T>& v,
long sz,
const T& val)
746 return v.SetLength(sz, val);
749 template <
typename T>
750 void resize(std::vector<T>& v,
long sz,
const T& val)
752 return v.resize(sz, val);
755 template <
typename T>
758 return v.SetLength(sz);
761 template <
typename T>
769 template <
typename T1,
typename T2>
772 return dynamic_cast<const void*
>(p1) ==
dynamic_cast<const void*
>(p2);
782 long polyEvalMod(
const NTL::ZZX& poly,
long x,
long p);
787 const NTL::vec_long& x,
788 const NTL::vec_long& y,
793 inline long divc(
long a,
long b) {
return (a + b - 1) / b; }
810 NTL::zz_pXModulus
fm;
814 const NTL::zz_pXModulus&
upcast()
const {
return fm; }
817 void rem(NTL::zz_pX& r,
const NTL::zz_pX& a,
const zz_pXModulus1& ff);
823 ZZ_pXModulus1(UNUSED
long _m,
const NTL::ZZ_pX& _f) : NTL::ZZ_pXModulus(_f) {}
824 const NTL::ZZ_pXModulus&
upcast()
const {
return *
this; }
827 template <
typename T>
834 for (
long i = 0; i < (long)v.size() - 1; i++)
836 return (s << v[v.size() - 1] <<
']');
839 template <
typename T>
848 template <
typename T>
851 std::stringstream ss;
856 template <
typename T>
861 std::stringstream ss(s);
866 template <
typename T>
869 NTL::Vec<T> v1 = atoVec<T>(a);
875 #ifndef NTL_PROVIDES_TRUNC_FFT
884 TofftRep(y, x, k, lo, hi);
897 template<
typename T,
typename... Args>
899 std::unique_ptr<T> build_unique(Args&&... args)
901 return std::unique_ptr<T>(
new T(std::forward<Args>(args)...));
908 inline double max_abs(
const std::vector<std::complex<double>>& vec)
912 double t = std::abs(x);
919 inline double max_abs(
const std::vector<double>& vec)
923 double t = std::abs(x);
933 template <
typename T,
typename P,
typename... Args>
934 void make_lazy(
const NTL::Lazy<T, P>& obj, Args&&... args)
936 typename NTL::Lazy<T, P>::Builder builder(obj);
939 NTL::UniquePtr<T, P> ptr;
940 ptr.make(std::forward<Args>(args)...);
947 template <
typename T,
typename P,
typename F,
typename... Args>
950 typename NTL::Lazy<T, P>::Builder builder(obj);
953 NTL::UniquePtr<T, P> ptr;
955 f(*ptr, std::forward<Args>(args)...);
963 0.6744897501960817432,
964 1.1503493803760081782,
965 1.5341205443525463117,
966 1.8627318674216514554,
967 2.1538746940614562129,
968 2.4175590162365050618,
969 2.6600674686174596585,
970 2.8856349124267571473,
971 3.0972690781987844623,
972 3.2971933456919633418,
973 3.4871041041144311068,
974 3.6683292851213230192,
975 3.8419306855019108708,
976 4.0087725941685849622,
977 4.1695693233491057549,
978 4.3249190408260462571,
979 4.4753284246542033544,
980 4.6212310014992471565,
981 4.7630010342678139569,
982 4.9009642079631930118};
984 #define ERFC_INVERSE_SIZE (long(sizeof(erfc_inverse) / sizeof(erfc_inverse[0])))
988 #endif // ifndef HELIB_NUMBTH_H
void vecRed(NTL::Vec< NTL::ZZ > &out, const NTL::Vec< NTL::ZZ > &in, long q, bool abs)
Definition: NumbTh.cpp:781
bool closeToOne(const NTL::xdouble &x, long p)
Definition: NumbTh.h:551
void buildLinPolyCoeffs(NTL::vec_zz_pE &C, const NTL::vec_zz_pE &L, long p, long r)
Combination of buildLinPolyMatrix and ppsolve.
Definition: NumbTh.cpp:1622
void rotate(const EncryptedArray &ea, PlaintextArray &pa, long k)
Definition: EncryptedArray.cpp:760
NTL::ZZX RandPoly(long n, const NTL::ZZ &p)
Definition: NumbTh.cpp:707
long k1
Definition: NumbTh.h:807
void mul(const EncryptedArray &ea, PlaintextArray &pa, const PlaintextArray &other)
Definition: EncryptedArray.cpp:1061
long lsize(const std::vector< T > &v)
Size of STL vector as a long (rather than unsigned long)
Definition: NumbTh.h:702
void ModComp(NTL::ZZX &res, const NTL::ZZX &g, const NTL::ZZX &h, const NTL::ZZX &f)
Modular composition of polynomials: res = g(h) mod f.
Definition: NumbTh.cpp:940
long LONG
Definition: NumbTh.h:115
NTL::ZZX makeIrredPoly(long p, long d)
Return a degree-d irreducible polynomial mod p.
Definition: NumbTh.cpp:102
NTL::fftRep R0
Definition: NumbTh.h:808
NTL::fftRep R1
Definition: NumbTh.h:808
std::set< long > * automorphVals
A list of required automorphisms When non-nullptr, causes Ctxt::smartAutomorphism to just record the ...
Definition: Ctxt.cpp:49
void make_lazy_with_fun(const NTL::Lazy< T, P > &obj, F f, Args &&... args)
Definition: NumbTh.h:948
void assertTrue(const T &value, const std::string &message)
Definition: assertions.h:61
long is_in(long x, int *X, long sz)
Finds whether x is an element of the set X of size sz, Returns -1 it not and the location if true.
Definition: NumbTh.cpp:869
void PolyRed(NTL::ZZX &out, const NTL::ZZX &in, long q, bool abs=false)
Reduce all the coefficients of a polynomial modulo q.
Definition: NumbTh.cpp:751
long mobius(long n)
Compute mobius function (naive method as n is small).
Definition: NumbTh.cpp:502
std::vector< std::stringstream > extractTokenizeRegion(std::istream &istr, char begin_char, char end_char, char separator, bool skip_space=true)
Advance the input stream istr beyond white spaces. Then split the region delimited by begin_char and ...
Definition: NumbTh.cpp:1100
RandomState()
Definition: NumbTh.h:588
void factorize(std::vector< long > &factors, long N)
Factoring by trial division, only works for N<2^{60}, only the primes are recorded,...
Definition: NumbTh.cpp:155
long balRem(long a, long q)
Definition: NumbTh.h:139
void recordAutomorphVal2(long k)
Definition: NumbTh.h:110
void rem(NTL::zz_pX &r, const NTL::zz_pX &a, const zz_pXModulus1 &ff)
Definition: NumbTh.cpp:1875
~RandomState()
Definition: NumbTh.h:603
void setAutomorphVals(std::set< long > *aVals)
Definition: NumbTh.h:88
void ppInvert(NTL::mat_zz_p &X, const NTL::mat_zz_p &A, long p, long r)
Compute the inverse mod p^r of an n x n matrix.
Definition: NumbTh.cpp:1566
NTL::zz_pX f
Definition: NumbTh.h:802
void assertInRange(const T &elem, const T &min, const T &max, const std::string &message, bool right_inclusive=false)
Definition: assertions.h:183
long divc(long a, long b)
returns ceiling(a/b); assumes a >=0, b>0, a+b <= MAX_LONG
Definition: NumbTh.h:793
void killVec(std::vector< T > &vec)
NTL/std compatibility.
Definition: NumbTh.h:711
long computeProd(const NTL::Vec< long > &vec)
returns \prod_d vec[d]
Definition: NumbTh.cpp:92
const double erfc_inverse[]
Definition: NumbTh.h:962
std::pair< long, long > rationalApprox(double x, long denomBound=0)
Definition: NumbTh.cpp:1709
long primroot(long N, long phiN)
Find a primitive root modulo N.
Definition: NumbTh.cpp:673
long ord(long N, long p)
Compute the highest power of p that divides N.
Definition: NumbTh.cpp:697
long argminmax(std::vector< T > &v)
Find the index of the (first) largest/smallest element.
Definition: NumbTh.h:501
long mcMod(long a, long b)
Routines for computing mathematically correct mod and div.
Definition: NumbTh.cpp:45
long bitSetToLong(long bits, long bitSize)
Considers bits as a vector of bits and returns the value it represents when interpreted as a n-bit 2'...
Definition: NumbTh.cpp:32
void div(std::vector< NTL::ZZX > &x, const std::vector< NTL::ZZX > &a, long b)
Definition: NumbTh.cpp:1338
void setAutomorphVals2(std::set< long > *aVals)
Definition: NumbTh.h:100
bool setDryRun(bool toWhat=true)
Definition: NumbTh.h:81
bool isSetAutomorphVals2()
Definition: NumbTh.h:105
const NTL::zz_pXModulus & upcast() const
Definition: NumbTh.h:814
void interpolateMod(NTL::ZZX &poly, const NTL::vec_long &x, const NTL::vec_long &y, long p, long e=1)
Interpolate polynomial such that poly(x[i] mod p)=y[i] (mod p^e) It is assumed that the points x[i] a...
Definition: NumbTh.cpp:1019
const NTL::ZZ_pXModulus & upcast() const
Definition: NumbTh.h:824
std::vector< T > vector_replicate(const T &a, long n)
Definition: NumbTh.h:428
std::string vecToStr(const std::vector< T > &v)
Definition: NumbTh.h:849
long n
Definition: NumbTh.h:803
bool intVecCRT(NTL::vec_ZZ &vp, const NTL::ZZ &p, const zzvec &vq, long q)
Incremental integer CRT for vectors.
Definition: NumbTh.cpp:894
void MulMod(NTL::ZZX &out, const NTL::ZZX &f, long a, long q, bool abs)
Definition: NumbTh.cpp:831
void setLengthZero(std::vector< T > &vec)
Definition: NumbTh.h:724
NTL::Vec< T > atoVec(const char *a)
Definition: NumbTh.h:857
long phi_N(long N)
Compute Phi(N).
Definition: NumbTh.cpp:235
void resize(NTL::Vec< T > &v, long sz, const T &val)
Definition: NumbTh.h:744
Auxiliary classes to facilitate faster reduction mod Phi_m(X) when the input has degree less than m.
Definition: NumbTh.h:799
void make_lazy(const NTL::Lazy< T, P > &obj, Args &&... args)
Definition: NumbTh.h:934
long mcDiv(long a, long b)
Definition: NumbTh.cpp:55
Definition: apiAttributes.h:21
void phiN(long &phiN, std::vector< long > &facts, long N)
Compute Phi(N) and also factorize N.
Definition: NumbTh.cpp:228
void ppsolve(NTL::vec_zz_pE &x, const NTL::mat_zz_pE &A, const NTL::vec_zz_pE &b, long p, long r)
Prime power solver.
Definition: NumbTh.cpp:1362
void restore()
Restore the PRG state of NTL.
Definition: NumbTh.h:595
zz_pXModulus1(long _m, const NTL::zz_pX &_f)
Definition: NumbTh.cpp:1849
bool isDryRun()
Definition: NumbTh.h:86
void balanced_MulMod(NTL::ZZX &out, const NTL::ZZX &f, long a, long q)
Definition: NumbTh.cpp:852
long multOrd(long p, long m)
Return multiplicative order of p modulo m, or 0 if GCD(p, m) != 1.
Definition: NumbTh.cpp:68
bool sameObject(const T1 *p1, const T2 *p2)
Testing if two vectors point to the same object.
Definition: NumbTh.h:770
double log2(const NTL::xdouble &x)
Base-2 logarithm.
Definition: NumbTh.h:236
std::ostream & operator<<(std::ostream &s, const SKHandle &handle)
Definition: Ctxt.h:190
void seekPastChar(std::istream &str, int cc)
Advance the input stream beyond white spaces and a single instance of the char cc.
Definition: NumbTh.cpp:1048
Facility for "restoring" the NTL PRG state.
Definition: NumbTh.h:582
const long double PI
Definition: NumbTh.cpp:24
void pp_factorize(std::vector< long > &factors, long N)
Prime-power factorization.
Definition: NumbTh.cpp:203
long argmax(std::vector< T > &v)
Definition: NumbTh.h:523
std::vector< T > atovector(const char *a)
Definition: NumbTh.h:867
bool dryRun
A dry-run flag The dry-run option disables most operations, to save time. This lets us quickly go ove...
Definition: NumbTh.cpp:27
long argmin(std::vector< T > &v)
Definition: NumbTh.h:529
void FindPrimitiveRoot(NTL::zz_p &r, unsigned long e)
Find e-th root of unity modulo the current modulus.
Definition: NumbTh.cpp:492
long k
Definition: NumbTh.h:807
void applyLinPoly(NTL::zz_pE &beta, const NTL::vec_zz_pE &C, const NTL::zz_pE &alpha, long p)
Apply a linearized polynomial with coefficient vector C.
Definition: NumbTh.cpp:1662
long m
Definition: NumbTh.h:801
long CRTcoeff(long p, long q, bool symmetric=false)
Returns a CRT coefficient: x = (0 mod p, 1 mod q). If symmetric is set then x \in [-pq/2,...
Definition: NumbTh.h:464
NTL::zz_pXModulus fm
Definition: NumbTh.h:810
NTL::ZZX Cyclotomic(long N)
Compute cyclotomic polynomial.
Definition: NumbTh.cpp:531
void add(const EncryptedArray &ea, PlaintextArray &pa, const PlaintextArray &other)
Definition: EncryptedArray.cpp:1005
double fsquare(double x)
Return the square of a number as a double.
Definition: NumbTh.h:148
double max_abs(const std::vector< std::complex< double >> &vec)
Definition: NumbTh.h:908
void swap(cloned_ptr< X, Cloner > &x, cloned_ptr< X, Cloner > &y)
Definition: clonedPtr.h:170
void TofftRep_trunc(NTL::fftRep &y, const NTL::zz_pX &x, long k, UNUSED long len, long lo, long hi)
Definition: NumbTh.h:877
std::set< long > * automorphVals2
Definition: Ctxt.cpp:50
bool isSetAutomorphVals()
Definition: NumbTh.h:93
bool specialLogic
Definition: NumbTh.h:805
void buildLinPolyMatrix(NTL::mat_zz_pE &M, long p)
Definition: NumbTh.cpp:1207
placeholder for pXModulus ...no optimizations
Definition: NumbTh.h:821
bool iterateInterestRegion(std::istream &str, int begin_char, int separator, int end_char)
Advance the input stream str beyond white spaces and a single separator in the region-of-interest del...
Definition: NumbTh.cpp:1066
std::istream & operator>>(std::istream &s, CtxtPart &p)
Definition: Ctxt.cpp:2206
void convert(long &x1, const NTL::GF2X &x2)
Definition: NumbTh.h:361
long polyEvalMod(const NTL::ZZX &poly, long x, long p)
Evaluates a modular integer polynomial, returns poly(x) mod p.
Definition: NumbTh.cpp:958
ZZ_pXModulus1(UNUSED long _m, const NTL::ZZ_pX &_f)
Definition: NumbTh.h:823
std::vector< T > Vec_replicate(const T &a, long n)
Definition: NumbTh.h:438
void reverse(NTL::Vec< T > &v, long lo, long hi)
Reverse a vector in place.
Definition: NumbTh.h:663
bool is2power(long m)
Definition: NumbTh.h:284
long findGenerators(std::vector< long > &gens, std::vector< long > &ords, long m, long p, const std::vector< long > &candidates=std::vector< long >())
Definition: NumbTh.cpp:342
void recordAutomorphVal(long k)
Definition: NumbTh.h:98