16 #ifndef HELIB_PERMUTATIONS_H
17 #define HELIB_PERMUTATIONS_H
19 #include <helib/PAlgebra.h>
20 #include <helib/matching.h>
21 #include <helib/hypercube.h>
22 #include <helib/apiAttributes.h>
34 const std::vector<T>& in,
40 const NTL::Vec<T>& in,
45 const std::vector<T>& in,
108 "Algebra does not have a dimension of index _dim: " +
109 std::to_string(_dim));
124 NTL::Vec<bool>& idID,
125 const NTL::Vec<long>& benesLvls)
const;
130 s <<
"Cube signature: " <<
getSig() << std::endl;
131 s <<
" dim=" << dim << std::endl;
132 s <<
" data=" <<
getData() << std::endl;
135 std::ostream&
operator<<(std::ostream& s,
const ColPerm& p);
145 const CubeSignature& sig);
157 NTL::Vec<NTL::Vec<short>> level;
171 while ((1L << k) < n)
180 assertInRange<InvalidArgument>(i,
183 "Level number i not in [0, 2 * k - 1)");
184 return (k - 1) - labs((k - 1) - i);
189 static long shamt(
long n,
long k,
long i)
192 return ((n >> d) + 1) >> 1;
201 assertInRange<InvalidArgument>(i,
204 "Level number i not in [0, 2 * k - 1)");
224 template <
typename T>
225 class FullBinaryTree;
231 template <
typename T>
236 long leftChild, rightChild;
239 void makeNullIndexes() { parent = leftChild = rightChild = prev = next = -1; }
243 explicit TreeNode(
const T& d) : data(d) { makeNullIndexes(); }
258 template <
typename T>
262 std::vector<TreeNode<T>> nodes;
264 long frstLeaf, lstLeaf;
271 frstLeaf = lstLeaf = -1;
280 frstLeaf = lstLeaf = 0;
285 if (nodes.size() == 0) {
288 frstLeaf = lstLeaf = 0;
295 long size() {
return (
long)nodes.size(); }
304 const T&
DataOfNode(
long i)
const {
return nodes.at(i).data; }
311 long nextLeaf(
long i)
const {
return nodes.at(i).next; }
312 long prevLeaf(
long i)
const {
return nodes.at(i).prev; }
316 long parentIdx(
long i)
const {
return nodes.at(i).parent; }
322 s <<
"[" << aux <<
" ";
323 s << nodes[idx].getData();
336 long addChildren(
long prntIdx,
const T& leftData,
const T& rightData);
341 if (nodes.size() > 1) {
343 frstLeaf = lstLeaf = 0;
348 template <
typename T>
353 assertInRange(prntIdx, 0l, (
long)nodes.size(),
"Parent node does not exist");
356 if (nodes[prntIdx].leftChild == -1 && nodes[prntIdx].rightChild == -1) {
357 long childIdx = nodes.size();
367 parent.leftChild = childIdx;
368 parent.rightChild = childIdx + 1;
369 left.parent = right.parent = prntIdx;
372 left.prev = parent.prev;
373 left.next = childIdx + 1;
374 right.prev = childIdx;
375 right.next = parent.next;
376 if (parent.prev >= 0) {
377 nodes[parent.prev].next = childIdx;
382 if (parent.next >= 0) {
383 nodes[parent.next].prev = childIdx + 1;
386 lstLeaf = childIdx + 1;
391 assertTrue(parent.leftChild >= 0,
"Left child does not exist");
392 assertTrue(parent.rightChild >= 0,
"Right child does not exist");
396 left.data = leftData;
397 right.data = rightData;
399 return nodes[prntIdx].leftChild;
420 static const NTL::Vec<long> dummyBenes;
437 const NTL::Vec<long>& bns1 = dummyBenes,
438 const NTL::Vec<long>& bns2 = dummyBenes)
462 NTL::Vec<OneGeneratorTree> trees;
463 Permut map2cube, map2array;
476 long getSize()
const {
return map2cube.length(); }
535 class EncryptedArray;
544 NTL::Vec<long> shifts;
552 long getE()
const {
return e; }
553 const NTL::Vec<long>&
getShifts()
const {
return shifts; }
560 NTL::Vec<PermNetLayer> layers;
563 void setLayers4Leaf(
long lyrIdx,
565 const NTL::Vec<long>& benesLvls,
577 long depth()
const {
return layers.length(); }
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