binaryCompare.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_BINARYCOMPARE_H
13 #define HELIB_BINARYCOMPARE_H
14 
18 #include <helib/EncryptedArray.h>
19 #include <helib/CtPtrs.h> // defines CtPtrs, CtPtrMat
20 
21 namespace helib {
22 
38 void compareTwoNumbers(CtPtrs& max,
39  CtPtrs& min,
40  Ctxt& mu,
41  Ctxt& ni,
42  const CtPtrs& a,
43  const CtPtrs& b,
44  bool twosComplement = false,
45  std::vector<zzX>* unpackSlotEncoding = nullptr);
46 
60 void compareTwoNumbers(Ctxt& mu,
61  Ctxt& ni,
62  const CtPtrs& a,
63  const CtPtrs& b,
64  bool twosComplement = false,
65  std::vector<zzX>* unpackSlotEncoding = nullptr);
66 
67 } // namespace helib
68 #endif // ifndef HELIB_BINARYCOMPARE_H
void compareTwoNumbers(CtPtrs &max, CtPtrs &min, Ctxt &mu, Ctxt &ni, const CtPtrs &a, const CtPtrs &b, bool twosComplement=false, std::vector< zzX > *unpackSlotEncoding=nullptr)
Compares two integers in binary a, b. Returns max(a, b), min(a, b) and indicator bits mu=(a>b) and ni...
Definition: binaryCompare.cpp:255
Definition: apiAttributes.h:21
PtrVector< Ctxt > CtPtrs
Definition: CtPtrs.h:25