PolyModRing.h
1 /* Copyright (C) 2019 IBM Corp.
2  * This program is Licensed under the Apache License, Version 2.0
3  * (the "License"); you may not use this file except in compliance
4  * with the License. You may obtain a copy of the License at
5  * http://www.apache.org/licenses/LICENSE-2.0
6  * Unless required by applicable law or agreed to in writing, software
7  * distributed under the License is distributed on an "AS IS" BASIS,
8  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9  * See the License for the specific language governing permissions and
10  * limitations under the License. See accompanying LICENSE file.
11  */
12 
13 #include <NTL/ZZX.h>
14 #include <NTL/ZZ_p.h>
15 #include <vector>
16 
17 #ifndef HELIB_POLYMODRING_H
18 #define HELIB_POLYMODRING_H
19 
24 namespace helib {
25 
43 {
47  const long p;
51  const long r;
56  const NTL::ZZX G;
60  const long p2r;
61 
62  // Delete the default constructor.
63  PolyModRing() = delete;
64 
65  // Delete the assignment operators.
66  PolyModRing& operator=(const PolyModRing&) = delete;
68 
72  PolyModRing(const PolyModRing& other) = default;
73 
77  PolyModRing(PolyModRing&& other) = default;
78 
82  ~PolyModRing() = default;
83 
95  PolyModRing(long p, long r, const NTL::ZZX& G);
96 
100  bool operator==(const PolyModRing& rhs) const noexcept;
101 
105  bool operator!=(const PolyModRing& rhs) const noexcept;
106 
113  friend std::ostream& operator<<(std::ostream& os, const PolyModRing& ring);
114 };
115 } // namespace helib
116 
117 #endif // HELIB_POLYMODRING_H
Lightweight type for describing the structure of a single slot of the plaintext space.
Definition: PolyModRing.h:43
PolyModRing(PolyModRing &&other)=default
Move constructor.
const long r
The power of p used in the plaintext space coefficient modulus.
Definition: PolyModRing.h:51
PolyModRing & operator=(const PolyModRing &)=delete
const NTL::ZZX G
The irreducible factor of Phi_m(X) used for the algebra of the individual slots.
Definition: PolyModRing.h:56
const long p2r
The plaintext space coefficient modulus, equal to p^r.
Definition: PolyModRing.h:60
PolyModRing(const PolyModRing &other)=default
Copy constructor.
PolyModRing & operator=(PolyModRing &&)=delete
Definition: apiAttributes.h:21
bool operator!=(const PolyModRing &rhs) const noexcept
Not-equals operator.
Definition: PolyModRing.cpp:27
friend std::ostream & operator<<(std::ostream &os, const PolyModRing &ring)
Output shift operator.
Definition: PolyModRing.cpp:32
bool operator==(const PolyModRing &rhs) const noexcept
Equality operator.
Definition: PolyModRing.cpp:22
~PolyModRing()=default
Destructor.
const long p
The characteristic of the plaintext space. This should be prime.
Definition: PolyModRing.h:47