primeChain.h
1 /* Copyright (C) 2012-2020 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 #ifndef HELIB_PRIMECHAIN_H
13 #define HELIB_PRIMECHAIN_H
14 
18 #include <vector>
19 #include <helib/IndexSet.h>
20 
21 namespace helib {
22 
23 class Cmodulus;
24 class Context;
25 
28 {
29 public:
30  typedef std::pair<double, IndexSet> Entry;
31  // each table entry is a pair<double,IndexSet>=(size, set-of-primes)
32 
34  void init(const Context& context);
35 
42  IndexSet getSet4Size(double low,
43  double high,
44  const IndexSet& fromSet,
45  bool reverse) const;
46 
53  IndexSet getSet4Size(double low,
54  double high,
55  const IndexSet& from1,
56  const IndexSet& from2,
57  bool reverse) const;
58 
59  // ASCII I/O
60  friend std::istream& operator>>(std::istream& s, ModuliSizes& szs);
61  friend std::ostream& operator<<(std::ostream& s, const ModuliSizes& szs);
62  // Raw I/O
63  void read(std::istream& str);
64  void write(std::ostream& str) const;
65 
66 private:
67  std::vector<Entry> sizes;
68  long iFFT_cost = -1;
69 };
70 
71 std::ostream& operator<<(std::ostream& s, const ModuliSizes::Entry& e);
72 std::istream& operator>>(std::istream& s, ModuliSizes::Entry& e);
73 void write(std::ostream& s, const ModuliSizes::Entry& e);
74 void read(std::istream& s, ModuliSizes::Entry& e);
75 
76 } // namespace helib
77 
78 #endif // ifndef HELIB_PRIMECHAIN_H
void init(const Context &context)
initialize helper table for a given chain
Definition: primeChain.cpp:58
void read(std::istream &s, ModuliSizes::Entry &e)
Definition: primeChain.cpp:51
A dynamic set of non-negative integers.
Definition: IndexSet.h:31
friend std::istream & operator>>(std::istream &s, ModuliSizes &szs)
Definition: primeChain.cpp:330
IndexSet getSet4Size(double low, double high, const IndexSet &fromSet, bool reverse) const
Definition: primeChain.cpp:168
Definition: apiAttributes.h:21
friend std::ostream & operator<<(std::ostream &s, const ModuliSizes &szs)
Definition: primeChain.cpp:326
std::pair< double, IndexSet > Entry
Definition: primeChain.h:30
A helper class to map required modulo-sizes to primeSets.
Definition: primeChain.h:28
std::ostream & operator<<(std::ostream &s, const SKHandle &handle)
Definition: Ctxt.h:190
Maintaining the parameters.
Definition: Context.h:121
void write(std::ostream &str) const
Definition: primeChain.cpp:342
void write(std::ostream &s, const ModuliSizes::Entry &e)
Definition: primeChain.cpp:45
std::istream & operator>>(std::istream &s, CtxtPart &p)
Definition: Ctxt.cpp:2206
void read(std::istream &str)
Definition: primeChain.cpp:349
void reverse(NTL::Vec< T > &v, long lo, long hi)
Reverse a vector in place.
Definition: NumbTh.h:663