permutations.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  */
16 #ifndef HELIB_PERMUTATIONS_H
17 #define HELIB_PERMUTATIONS_H
18 
19 #include <helib/PAlgebra.h>
20 #include <helib/matching.h>
21 #include <helib/hypercube.h>
22 #include <helib/apiAttributes.h>
23 
24 namespace helib {
25 
27 typedef NTL::Vec<long> Permut;
28 
30 template <typename T>
31 void applyPermToVec(NTL::Vec<T>& out, const NTL::Vec<T>& in, const Permut& p1);
32 template <typename T>
33 void applyPermToVec(std::vector<T>& out,
34  const std::vector<T>& in,
35  const Permut& p1);
36 
38 template <typename T>
39 void applyPermsToVec(NTL::Vec<T>& out,
40  const NTL::Vec<T>& in,
41  const Permut& p2,
42  const Permut& p1);
43 template <typename T>
44 void applyPermsToVec(std::vector<T>& out,
45  const std::vector<T>& in,
46  const Permut& p2,
47  const Permut& p1);
48 
50 void randomPerm(Permut& perm, long n);
51 
90 class ColPerm : public HyperCube<long>
91 {
92 private:
93  long dim;
94  ColPerm(); // disabled
95 
96 public:
97  explicit ColPerm(const CubeSignature& _sig) : HyperCube<long>(_sig)
98  {
99  dim = -1;
100  }
101 
102  long getPermDim() const { return dim; }
103  void setPermDim(long _dim)
104  {
105  assertInRange(_dim,
106  0l,
107  getNumDims(),
108  "Algebra does not have a dimension of index _dim: " +
109  std::to_string(_dim));
110  dim = _dim;
111  }
112 
113  void makeExplicit(Permut& out) const; // Write the permutation explicitly
114 
118  long getShiftAmounts(Permut& out) const;
119 
123  void getBenesShiftAmounts(NTL::Vec<Permut>& out,
124  NTL::Vec<bool>& idID,
125  const NTL::Vec<long>& benesLvls) const;
126 
128  void printout(std::ostream& s)
129  { // a test/debugging method
130  s << "Cube signature: " << getSig() << std::endl;
131  s << " dim=" << dim << std::endl;
132  s << " data=" << getData() << std::endl;
133  }
134 };
135 std::ostream& operator<<(std::ostream& s, const ColPerm& p);
136 
143 void breakPermByDim(std::vector<ColPerm>& out,
144  const Permut& pi,
145  const CubeSignature& sig);
146 
152 {
153 private:
154  long n; // size of perm, n > 1, not necessarily power of 2
155  long k; // recursion depth, k = least integer k s/t 2^k >= n
156 
157  NTL::Vec<NTL::Vec<short>> level;
158  // there are 2*k - 1 levels, each with n nodes.
159  // level[i][j] is 0, 1, or -1,
160  // which designates an edge from node j at level i
161  // to node j + level[i][j]*shamt(i) at level i+1
162 
163  GeneralBenesNetwork(); // default constructor disabled
164 
165 public:
168  static long depth(long n)
169  {
170  long k = 1;
171  while ((1L << k) < n)
172  k++;
173  return k;
174  }
175 
178  static long levelToDepthMap(UNUSED long n, long k, long i)
179  {
180  assertInRange<InvalidArgument>(i,
181  0l,
182  2 * k - 1,
183  "Level number i not in [0, 2 * k - 1)");
184  return (k - 1) - labs((k - 1) - i);
185  }
186 
189  static long shamt(long n, long k, long i)
190  {
191  long d = levelToDepthMap(n, k, i);
192  return ((n >> d) + 1) >> 1;
193  }
194 
195  long getDepth() const { return k; }
196  long getSize() const { return n; }
197  long getNumLevels() const { return 2 * k - 1; }
198 
199  const NTL::Vec<short>& getLevel(long i) const
200  {
201  assertInRange<InvalidArgument>(i,
202  0l,
203  2 * k - 1,
204  "Level number i not in [0, 2 * k - 1)");
205  return level[i];
206  }
207 
208  long levelToDepthMap(long i) const { return levelToDepthMap(n, k, i); }
209  long shamt(long i) const { return shamt(n, k, i); }
210 
211  // constructor
212  GeneralBenesNetwork(const Permut& perm);
213 
214  // test correctness
215 
216  bool testNetwork(const Permut& perm) const;
217 };
218 
224 template <typename T>
225 class FullBinaryTree;
226 
231 template <typename T>
232 class TreeNode
233 {
234  T data;
235  long parent;
236  long leftChild, rightChild;
237  long prev, next; // useful, e.g., to connect all leaves in a list
238 
239  void makeNullIndexes() { parent = leftChild = rightChild = prev = next = -1; }
240 
241 public:
242  TreeNode() { makeNullIndexes(); }
243  explicit TreeNode(const T& d) : data(d) { makeNullIndexes(); }
244 
245  T& getData() { return data; }
246  const T& getData() const { return data; }
247 
248  long getParent() const { return parent; }
249  long getLeftChild() const { return leftChild; }
250  long getRightChild() const { return rightChild; }
251  long getPrev() const { return prev; }
252  long getNext() const { return next; }
253 
254  friend class FullBinaryTree<T>;
255 };
256 
257 // A binary tree, the root is always the node at index 0
258 template <typename T>
260 {
261  long aux; // a "foreign key" for this tree (holds generator index)
262  std::vector<TreeNode<T>> nodes;
263  long nLeaves; // how many leaves in this tree
264  long frstLeaf, lstLeaf; // index of the first/last leaves
265 
266 public:
267  FullBinaryTree(long _aux = 0)
268  {
269  aux = _aux;
270  nLeaves = 0;
271  frstLeaf = lstLeaf = -1;
272  } // empty tree
273 
274  explicit FullBinaryTree(const T& d, long _aux = 0) // tree with only a root
275  {
276  aux = _aux;
277  nLeaves = 1;
278  TreeNode<T> n(d);
279  nodes.push_back(n);
280  frstLeaf = lstLeaf = 0;
281  }
282 
283  void putDataInRoot(const T& d)
284  {
285  if (nodes.size() == 0) { // make new root
286  TreeNode<T> n(d);
287  nodes.push_back(n);
288  frstLeaf = lstLeaf = 0;
289  nLeaves = 1;
290  } else
291  nodes[0].data = d; // Root exists, just update data
292  }
293 
294  // Provide some of the interfaces of the underlying std::vector
295  long size() { return (long)nodes.size(); }
296 
297  TreeNode<T>& operator[](long i) { return nodes[i]; }
298  const TreeNode<T>& operator[](long i) const { return nodes[i]; }
299 
300  TreeNode<T>& at(long i) { return nodes.at(i); }
301  const TreeNode<T>& at(long i) const { return nodes.at(i); }
302 
303  T& DataOfNode(long i) { return nodes.at(i).data; }
304  const T& DataOfNode(long i) const { return nodes.at(i).data; }
305 
306  long getAuxKey() const { return aux; }
307  void setAuxKey(long _aux) { aux = _aux; }
308 
309  long getNleaves() const { return nLeaves; }
310  long firstLeaf() const { return frstLeaf; }
311  long nextLeaf(long i) const { return nodes.at(i).next; }
312  long prevLeaf(long i) const { return nodes.at(i).prev; }
313  long lastLeaf() const { return lstLeaf; }
314 
315  long rootIdx() const { return 0; }
316  long parentIdx(long i) const { return nodes.at(i).parent; }
317  long leftChildIdx(long i) const { return nodes.at(i).leftChild; }
318  long rightChildIdx(long i) const { return nodes.at(i).rightChild; }
319 
320  void printout(std::ostream& s, long idx = 0) const
321  {
322  s << "[" << aux << " ";
323  s << nodes[idx].getData();
324  if (leftChildIdx(idx) >= 0)
325  printout(s, leftChildIdx(idx));
326  if (rightChildIdx(idx) >= 0)
327  printout(s, rightChildIdx(idx));
328  s << "] ";
329  }
330  // friend std::istream& operator>> (std::istream &s, DoubleCRT &d);
331 
336  long addChildren(long prntIdx, const T& leftData, const T& rightData);
337 
340  {
341  if (nodes.size() > 1) {
342  nodes.resize(1);
343  frstLeaf = lstLeaf = 0;
344  nLeaves = 1;
345  }
346  }
347 };
348 template <typename T>
350  const T& leftData,
351  const T& rightData)
352 {
353  assertInRange(prntIdx, 0l, (long)nodes.size(), "Parent node does not exist");
354 
355  // If parent is a leaf, add to it two children
356  if (nodes[prntIdx].leftChild == -1 && nodes[prntIdx].rightChild == -1) {
357  long childIdx = nodes.size();
358  TreeNode<T> n1(leftData);
359  nodes.push_back(n1); // add left child to std::vector
360  TreeNode<T> n2(rightData);
361  nodes.push_back(n2); // add right child to std::vector
362 
363  TreeNode<T>& parent = nodes[prntIdx];
364  TreeNode<T>& left = nodes[childIdx];
365  TreeNode<T>& right = nodes[childIdx + 1];
366 
367  parent.leftChild = childIdx; // point to children from parent
368  parent.rightChild = childIdx + 1;
369  left.parent = right.parent = prntIdx; // point to parent from children
370 
371  // remove parent and insert children to the linked list of leaves
372  left.prev = parent.prev;
373  left.next = childIdx + 1;
374  right.prev = childIdx;
375  right.next = parent.next;
376  if (parent.prev >= 0) { // parent was not the 1st leaf
377  nodes[parent.prev].next = childIdx;
378  parent.prev = -1;
379  } else // parent was the first leaf, now its left child is 1st
380  frstLeaf = childIdx;
381 
382  if (parent.next >= 0) { // parent was not the last leaf
383  nodes[parent.next].prev = childIdx + 1;
384  parent.next = -1;
385  } else // parent was the last leaf, now its left child is last
386  lstLeaf = childIdx + 1;
387 
388  nLeaves++; // we replaced a leaf by a parent w/ two leaves
389  } else { // parent is not a leaf, update the two children
390  TreeNode<T>& parent = nodes[prntIdx];
391  assertTrue(parent.leftChild >= 0, "Left child does not exist");
392  assertTrue(parent.rightChild >= 0, "Right child does not exist");
393 
394  TreeNode<T>& left = nodes[parent.leftChild];
395  TreeNode<T>& right = nodes[parent.rightChild];
396  left.data = leftData;
397  right.data = rightData;
398  }
399  return nodes[prntIdx].leftChild;
400 }
401 
404 {
405 public:
406  long genIdx; // the index of the corresponding generator in Zm*/(p)
407  long order; // the order of this generator (or a smaller subcube)
408  bool good; // is this a good generator?
409 
410  GenDescriptor(long _order, bool _good, long gen = 0) :
411  genIdx(gen), order(_order), good(_good)
412  {}
413 
415 };
416 
419 {
420  static const NTL::Vec<long> dummyBenes; // Useful for initialization
421 public:
422  long size; // size of cube slice, same as 'order' in GenDescriptor
423  bool good; // good or bad
424  long e; // shift-by-1 in this sub-dim is done via X -> X^{g^e}
425 
426  // A Benes leaf corresponds to either one or two Benes networks, depending
427  // on whether or not it is in the middle. If this object is in the middle
428  // then scndBenes.length()==0, else scndBenes.length()>=1. Each of the two
429  // Benes network can be "trivial", i.e., collapsed to a single layer, which
430  // is denoted by benes.length()==1.
431  NTL::Vec<long> frstBenes;
432  NTL::Vec<long> scndBenes;
433 
434  explicit SubDimension(long sz = 0,
435  bool gd = false,
436  long ee = 0,
437  const NTL::Vec<long>& bns1 = dummyBenes,
438  const NTL::Vec<long>& bns2 = dummyBenes)
439  {
440  size = sz;
441  good = gd;
442  e = ee;
443  frstBenes = bns1;
444  scndBenes = bns2;
445  }
446 
447  long totalLength() const { return frstBenes.length() + scndBenes.length(); }
448  /* SubDimension& operator=(const SubDimension& other)
449  { genIdx=other.genIdx; size=other.size;
450  e=other.e; good=other.good; benes=other.benes;
451  return *this;
452  }
453  */
454  friend std::ostream& operator<<(std::ostream& s, const SubDimension& tree);
455 };
456 typedef FullBinaryTree<SubDimension> OneGeneratorTree; // tree for one generator
457 
460 {
461  long depth; // How many layers in this permutation network
462  NTL::Vec<OneGeneratorTree> trees;
463  Permut map2cube, map2array;
464 
465 public:
466  GeneratorTrees() { depth = 0; } // default constructor
467 
468  // GeneratorTrees(const Vec<OneGeneratorTree>& _trees): trees(_trees)
469  // {depth=0;}
470  //
471  // Initialize trees with only the roots.
472  // GeneratorTrees(const Vec<SubDimension>& dims);
473 
474  long numLayers() const { return depth; } // depth of permutation network
475  long numTrees() const { return trees.length(); } // how many trees
476  long getSize() const { return map2cube.length(); } // hypercube size
477 
478  OneGeneratorTree& operator[](long i) { return trees[i]; }
479  const OneGeneratorTree& operator[](long i) const { return trees[i]; }
480  OneGeneratorTree& at(long i) { return trees.at(i); }
481  const OneGeneratorTree& at(long i) const { return trees.at(i); }
482 
483  OneGeneratorTree& getGenTree(long i) { return trees.at(i); }
484  const OneGeneratorTree& getGenTree(long i) const { return trees.at(i); }
485 
486  const Permut& mapToCube() const { return map2cube; }
487  const Permut& mapToArray() const { return map2array; }
488  Permut& mapToCube() { return map2cube; }
489  Permut& mapToArray() { return map2array; }
490 
491  long mapToCube(long i) const { return map2cube[i]; }
492  long mapToArray(long i) const { return map2array[i]; }
493 
496  void getCubeDims(NTL::Vec<long>& dims) const;
497 
500  void getCubeSubDims(NTL::Vec<long>& dims) const;
501 
502  // Returns coordinates of i relative to leaves of the tree
503  // void getCoordinates(Vec<long>&, long i) const;
504 
509  long buildOptimalTrees(const NTL::Vec<GenDescriptor>& vec, long depthBound);
510 
527  void ComputeCubeMapping();
528 
529  friend std::ostream& operator<<(std::ostream& s, const GeneratorTrees& t);
530 };
531 
532 // Permutation networks
533 
534 class Ctxt;
535 class EncryptedArray;
536 class PermNetwork;
537 
541 {
542  long genIdx; // shift-by-1 in this layer is done via X -> X^{g^e}
543  long e;
544  NTL::Vec<long> shifts; // shifts[i] is how much to shift slot i
545  bool isID; // a silly optimization, does this layer compute the identity?
546 
547  friend class PermNetwork;
548  friend std::ostream& operator<<(std::ostream& s, const PermNetwork& net);
549 
550 public:
551  long getGenIdx() const { return genIdx; }
552  long getE() const { return e; }
553  const NTL::Vec<long>& getShifts() const { return shifts; }
554  bool isIdentity() const { return isID; }
555 };
556 
559 {
560  NTL::Vec<PermNetLayer> layers;
561 
563  void setLayers4Leaf(long lyrIdx,
564  const ColPerm& p,
565  const NTL::Vec<long>& benesLvls,
566  long gIdx,
567  const SubDimension& leafData,
568  const Permut& map2cube);
569 
570 public:
571  PermNetwork(){}; // empty network
572  PermNetwork(const Permut& pi, const GeneratorTrees& trees)
573  {
574  buildNetwork(pi, trees);
575  }
576 
577  long depth() const { return layers.length(); }
578 
581  void buildNetwork(const Permut& pi, const GeneratorTrees& trees);
582 
584  void applyToCtxt(Ctxt& c, const EncryptedArray& ea) const;
585 
587  void applyToCube(HyperCube<long>& v) const;
588 
590  void applyToPtxt(NTL::ZZX& p, const EncryptedArray& ea) const;
591 
592  const PermNetLayer& getLayer(long i) const { return layers[i]; }
593 
594  friend std::ostream& operator<<(std::ostream& s, const PermNetwork& net);
595 };
596 
597 } // namespace helib
598 
599 #endif // ifndef HELIB_PERMUTATIONS_H
long order
Definition: permutations.h:407
const NTL::Vec< short > & getLevel(long i) const
Definition: permutations.h:199
NTL::Vec< long > frstBenes
Definition: permutations.h:431
FullBinaryTree< SubDimension > OneGeneratorTree
Definition: permutations.h:456
long getPrev() const
Definition: permutations.h:251
GeneratorTrees()
Definition: permutations.h:466
long size()
Definition: permutations.h:295
void applyToCtxt(Ctxt &c, const EncryptedArray &ea) const
Apply network to permute a ciphertext.
Definition: PermNetwork.cpp:217
void setAuxKey(long _aux)
Definition: permutations.h:307
long addChildren(long prntIdx, const T &leftData, const T &rightData)
Definition: permutations.h:349
const TreeNode< T > & at(long i) const
Definition: permutations.h:301
void applyToCube(HyperCube< long > &v) const
Apply network to array, used mostly for debugging.
Definition: PermNetwork.cpp:149
A node in a full binary tree.
Definition: permutations.h:233
FullBinaryTree(const T &d, long _aux=0)
Definition: permutations.h:274
const PermNetLayer & getLayer(long i) const
Definition: permutations.h:592
long depth() const
Definition: permutations.h:577
void assertTrue(const T &value, const std::string &message)
Definition: assertions.h:61
Permuting a single dimension (column) of a hypercube.
Definition: permutations.h:91
void makeExplicit(Permut &out) const
Definition: permutations.cpp:110
long getNumDims() const
number of dimensions
Definition: hypercube.h:276
long getAuxKey() const
Definition: permutations.h:306
long getShiftAmounts(Permut &out) const
Definition: permutations.cpp:125
void applyToPtxt(NTL::ZZX &p, const EncryptedArray &ea) const
Apply network to plaintext polynomial, used mostly for debugging.
static long levelToDepthMap(UNUSED long n, long k, long i)
Definition: permutations.h:178
long lastLeaf() const
Definition: permutations.h:313
long size
Definition: permutations.h:422
bool testNetwork(const Permut &perm) const
Definition: BenesNetwork.cpp:308
A simple wrapper for a smart pointer to an EncryptedArrayBase. This is the interface that higher-leve...
Definition: EncryptedArray.h:1233
long parentIdx(long i) const
Definition: permutations.h:316
long totalLength() const
Definition: permutations.h:447
const OneGeneratorTree & operator[](long i) const
Definition: permutations.h:479
long getE() const
Definition: permutations.h:552
bool good
Definition: permutations.h:423
const Permut & mapToCube() const
Definition: permutations.h:486
void printout(std::ostream &s, long idx=0) const
Definition: permutations.h:320
PermNetwork()
Definition: permutations.h:571
void assertInRange(const T &elem, const T &min, const T &max, const std::string &message, bool right_inclusive=false)
Definition: assertions.h:183
GenDescriptor()
Definition: permutations.h:414
TreeNode< T > & operator[](long i)
Definition: permutations.h:297
long nextLeaf(long i) const
Definition: permutations.h:311
const T & DataOfNode(long i) const
Definition: permutations.h:304
Permut & mapToArray()
Definition: permutations.h:489
friend std::ostream & operator<<(std::ostream &s, const PermNetwork &net)
Definition: PermNetwork.cpp:20
void getCubeDims(NTL::Vec< long > &dims) const
Definition: permutations.cpp:376
long getPermDim() const
Definition: permutations.h:102
void collapseToRoot()
Remove all nodes in the tree except for the root.
Definition: permutations.h:339
long buildOptimalTrees(const NTL::Vec< GenDescriptor > &vec, long depthBound)
Definition: OptimizePermutations.cpp:943
const OneGeneratorTree & at(long i) const
Definition: permutations.h:481
long rightChildIdx(long i) const
Definition: permutations.h:318
void getCubeSubDims(NTL::Vec< long > &dims) const
Definition: permutations.cpp:390
A node in a tree relative to some generator.
Definition: permutations.h:419
long mapToArray(long i) const
Definition: permutations.h:492
NTL::Vec< long > Permut
A simple permutation is just a vector with p[i]=\pi_i.
Definition: permutations.h:27
long getDepth() const
Definition: permutations.h:195
bool good
Definition: permutations.h:408
TreeNode(const T &d)
Definition: permutations.h:243
void ComputeCubeMapping()
Computes permutations mapping between linear array and the cube.
Definition: permutations.cpp:456
void applyPermsToVec(NTL::Vec< T > &out, const NTL::Vec< T > &in, const Permut &p2, const Permut &p1)
Apply two permutations to a std::vector out[i]=in[p2[p1[i]]] (NOT in-place)
Definition: permutations.cpp:46
ColPerm(const CubeSignature &_sig)
Definition: permutations.h:97
A minimal description of a generator for the purpose of building tree.
Definition: permutations.h:404
friend std::ostream & operator<<(std::ostream &s, const GeneratorTrees &t)
Definition: permutations.cpp:518
long getParent() const
Definition: permutations.h:248
static long depth(long n)
Definition: permutations.h:168
OneGeneratorTree & at(long i)
Definition: permutations.h:480
A simple implementation of full binary trees (each non-leaf has 2 children)
Definition: permutations.h:260
TreeNode< T > & at(long i)
Definition: permutations.h:300
void getBenesShiftAmounts(NTL::Vec< Permut > &out, NTL::Vec< bool > &idID, const NTL::Vec< long > &benesLvls) const
Definition: permutations.cpp:169
long genIdx
Definition: permutations.h:406
const OneGeneratorTree & getGenTree(long i) const
Definition: permutations.h:484
const T & getData() const
Definition: permutations.h:246
long e
Definition: permutations.h:424
long firstLeaf() const
Definition: permutations.h:310
TreeNode()
Definition: permutations.h:242
SubDimension(long sz=0, bool gd=false, long ee=0, const NTL::Vec< long > &bns1=dummyBenes, const NTL::Vec< long > &bns2=dummyBenes)
Definition: permutations.h:434
Definition: apiAttributes.h:21
long prevLeaf(long i) const
Definition: permutations.h:312
void buildNetwork(const Permut &pi, const GeneratorTrees &trees)
Definition: PermNetwork.cpp:77
void putDataInRoot(const T &d)
Definition: permutations.h:283
long getSize() const
Definition: permutations.h:196
Holds a vector of dimensions for a hypercube and some additional data.
Definition: hypercube.h:28
void breakPermByDim(std::vector< ColPerm > &out, const Permut &pi, const CubeSignature &sig)
Takes a permutation pi over m-dimensional cube C=Z_{n1} x...x Z_{nm} and expresses pi as a product pi...
Definition: permutations.cpp:333
GenDescriptor(long _order, bool _good, long gen=0)
Definition: permutations.h:410
Permut & mapToCube()
Definition: permutations.h:488
long getNumLevels() const
Definition: permutations.h:197
long numLayers() const
Definition: permutations.h:474
long numTrees() const
Definition: permutations.h:475
OneGeneratorTree & getGenTree(long i)
Definition: permutations.h:483
std::ostream & operator<<(std::ostream &s, const SKHandle &handle)
Definition: Ctxt.h:190
A full permutation network.
Definition: permutations.h:559
A multi-dimensional cube.
Definition: hypercube.h:221
long getGenIdx() const
Definition: permutations.h:551
A std::vector of generator trees, one per generator in Zm*‍/(p)
Definition: permutations.h:460
const TreeNode< T > & operator[](long i) const
Definition: permutations.h:298
long mapToCube(long i) const
Definition: permutations.h:491
OneGeneratorTree & operator[](long i)
Definition: permutations.h:478
static long shamt(long n, long k, long i)
Definition: permutations.h:189
FullBinaryTree(long _aux=0)
Definition: permutations.h:267
PermNetwork(const Permut &pi, const GeneratorTrees &trees)
Definition: permutations.h:572
void applyPermToVec(NTL::Vec< T > &out, const NTL::Vec< T > &in, const Permut &p1)
Apply a permutation to a std::vector, out[i]=in[p1[i]] (NOT in-place)
Definition: permutations.cpp:23
friend std::ostream & operator<<(std::ostream &s, const SubDimension &tree)
Definition: permutations.cpp:509
const NTL::Vec< long > & getShifts() const
Definition: permutations.h:553
void randomPerm(Permut &perm, long n)
A random size-n permutation.
Definition: permutations.cpp:93
const Permut & mapToArray() const
Definition: permutations.h:487
Implementation of generalized Benes Permutation Network.
Definition: permutations.h:152
friend std::ostream & operator<<(std::ostream &s, const PermNetwork &net)
Definition: PermNetwork.cpp:20
long getRightChild() const
Definition: permutations.h:250
void printout(std::ostream &s)
A test/debugging method.
Definition: permutations.h:128
A Ctxt object holds a single ciphertext.
Definition: Ctxt.h:273
long getNext() const
Definition: permutations.h:252
long levelToDepthMap(long i) const
Definition: permutations.h:208
void setPermDim(long _dim)
Definition: permutations.h:103
T & DataOfNode(long i)
Definition: permutations.h:303
NTL::Vec< long > scndBenes
Definition: permutations.h:432
NTL::Vec< long > & getData()
Definition: hypercube.h:267
long getLeftChild() const
Definition: permutations.h:249
long getNleaves() const
Definition: permutations.h:309
T & getData()
Definition: permutations.h:245
const CubeSignature & getSig() const
const ref to signature
Definition: hypercube.h:262
long shamt(long i) const
Definition: permutations.h:209
bool isIdentity() const
Definition: permutations.h:554
long rootIdx() const
Definition: permutations.h:315
long leftChildIdx(long i) const
Definition: permutations.h:317
long getSize() const
Definition: permutations.h:476
The information needed to apply one layer of a permutation network.
Definition: permutations.h:541